How can I change the order of a list once applied by JavaScript jQuery.sortable.
jQuery.sortable
For example:
As Sparr has said, there's no way to sort them using sortable directly, but you can still move them manually with something like:
sortable
$("#mylist li:eq(1)").insertAfter($("#mylist li:eq(2)"));