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
Use toArray method which serializes the sortable's item id's into an array of string.
$( "#sortable" ).sortable('toArray');