JQuery List DragSort Plugin
A lightweight javascript file that provides the ability to sort lists using drag and drop. Built on the jQuery framework.

Usage
$(”ul”).dragsort({ dragSelector: “li”, dragEnd: function() { }, dragBetween: false });
dragSelector: The selector for the element to act as the drag handle. The default is LI.
dragEnd: The callback function that will be called after the dragging has ended.
dragBetween: Set to “true” if you want to enable the ability to drag between selected lists. The default is false.
zulsdesign


