i just upgraded from jquery 1.3.2 to 1.4 - and I found my sortables serialize not working anymore?! anyone else experience this problem? heres the code:
    $(document).ready(function() { 
$("#list_to_sort").sortable({ 
  handle : '.handle', 
  update : function () { 
    var order = $('#list_to_sort').sortable('serialize'); 
    $("updated-div").load("whatever.sort.serialize.php?"+order);
  } 
}); 
}); Thanks Mark