How do I get the jQuery-UI sortable feature working on iPad and other touch devices?
http://jqueryui.com/demos/sortable/
I tried to using event.prevent
event.prevent
To make sortable work on mobile. Im using touch-punch like this:
sortable
$("#target").sortable({ // option: 'value1', // otherOption: 'value2', }); $("#target").disableSelection();
Take note of adding disableSelection(); after creating the sortable instance.
disableSelection();