I\'m using jQuery and Sortable to arrange my list of items (and this http://dragsort.codeplex.com).
All works perfect.
I\'m using a function on dragEnd
dragEnd
Why did not you used Sortable on jqueryui? http://jsfiddle.net/KgNCD/
JS:
$( "#sortable" ).sortable({ start: function(e, ui){ $(ui.placeholder).hide(300); }, change: function (e,ui){ $(ui.placeholder).hide().show(300); } }); $("#sortable").disableSelection();
HTML:
1 2 3 4 5 6 7 8 9 10 11 12