up vote 12 down vote favorite
10
share [g+] share [fb]

I have a page that uses JQuery UI; in particular the Sortable interaction.

The page works fine for desktop web browsers with mice, however I can't get the drag-drop functionality to work on Mobile Safari on the iPhone. Any dragging action simply scrolls the page.

The functionality on my page is extremely similar to the Sortable Empty-Lists demo on the JQuery UI site. This page also doesn't work on the iPhone.

Is there any way to get the drag-drop functions working on the iPhone?

link|improve this question

Does the original "Sortable Empty-Lists" demo from the JQuery UI site work on your iPhone? – Oleg May 20 '10 at 1:10
No - "This page also doesn't work on the iPhone" – Damovisa May 20 '10 at 1:11
feedback

3 Answers

up vote 17 down vote accepted

According to the Mobile Safari docs drag and drop is not supported, but it can be simulated. Since basically dragging your finger along will scroll the browser you will have to disable this. That can be done like this:

$(document).bind('touchmove', function(e) {
   e.preventDefault();
}, false);

Otherwise the event you will have to handle are touchstart, touchmove and touchend.

link|improve this answer
Thanks Jakub, Do you have a reference to the Mobile Safari docs? – Damovisa May 20 '10 at 1:12
4  
developer.apple.com/safari/library/documentation/… and around there. – Jakub Hampl May 20 '10 at 1:15
Awesome, thankyou! – Damovisa May 20 '10 at 1:16
Any idea if this will work on Android also? Thanks – eclipse31 Jul 20 '11 at 13:06
feedback

This is a demo of jquery ui 1.9pre: https://dl.dropbox.com/u/3872624/lab/touch/index.html

The jquery.mouse.ui.js file is working great for me.

link|improve this answer
Using 1.9 with jquery.mouse.ui.js is the ticket, so thanks! Using 1.8 seems to work at first, but sortable and draggable have little quirks that make it unusable. – phatmann Oct 2 '11 at 21:42
Unfortunately this does not work correctly if you try to use the "handle" option in Sortable. After dragging an item, any further attempts to drag other items just end up dragging the first item. I am looking into the issue. This was also mentioned here. – phatmann Oct 7 '11 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.