sortables update function

sortables update function

okay so i figured it out but when i call update it does nothing any ideas?

$j(document).ready(function(){
$j("#myList").sortable({
cursor : 'move',
update : function(){
sorted = $j(this).sortabled("serialize","id");
alert(sorted);
}
});
});