Where you have

$("#staerke1").sortable({
    connectWith: ["#staerke2"],
    update: liCounting(),
    placeholder:"placeholder"
});

change

update: liCounting()

to

update: liCounting

The former will call the liCounting function once and set the update option
to have the return value of the function. The latter will set the update
option equal to the liCounting function so it can be called at the
appropriate time.

- Richard

On Fri, Dec 5, 2008 at 9:32 AM, tlob <[EMAIL PROTECTED]> wrote:

>
> Hello
> on this page, when you drag around LI's
> http://www.vum.ch/thomas/post/11.html
> the update: liCounting(), function does not firing alway in FF,IE.
> Only in Safari or when you click the LI's.
>
> I have no clue why....
> Any tips?
>
> Thx
> tom

Reply via email to