Here is an interesting use of JavaScript: reordering items with drag and drop. The implementation itself in my page works fine, but is there a way to determine in which orde
I have used following code to get the order of item.
Html
1 2 3 4 5 6
JQuery
$(document).ready(function(){ $("#sortable").sortable({ stop : function(event, ui){ $('#sortable > div').each(function(){ alert($(this).html()); }); } }); $("#sortable").disableSelection(); });