Hello!

So I have a simple sortable list with jQuery UI's .Sortable()
function. I am hoping to have it fire off a function right after any
of the list items are moved. From the documentation, "update" seems to
be the paramater to pass it to get it to do that:

$(".list").sortable({
       handle   : ".draggertab",
       update   : function(){
           console.log("order changed");
       }
});

But my little function there to log something to the console doesn't
seem to be firing off when I drag a list item and the list is
resorted.

Am I missing something?

[I realize there is a different group for jQuery UI, but despite being
a member and seemingly successfully posting, the message never showed
up.]

Reply via email to