I am trying to get JQuery Sortable to work but I have run into a slight usability problem.
The list that I am trying to sort is quite large (about 200 items). If the
I would take a look at the scroll, scrollSensativity, and scrollSpeed options.
You can do something like:
$("#sort").sortable({ scroll: true, scrollSensitivity: 100 });
or
$("#sort").sortable({ scroll: true, scrollSpeed: 100 });
or even
$("#sort").sortable({ scroll: true, scrollSensitivity: 100, scrollSpeed: 100 });