I am building a web application with HTML5, CSS3 and jQuery, jQuery UI and jQuery Mobile. Now I have a small example (example: http://jsbin.com/ayoba4/2 )
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" /> <script src="http://code.jquery.com/jquery-1.4.4.min.js"></script> <script src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js"></script> <meta charset=utf-8 /> <title>Drag Test</title> </head> <body> <div style="width:500px;height:500px;border:1px solid red;"> <img src="http://upload.wikimedia.org/wikipedia/en/thumb/9/9e/JQuery_logo.svg/200px-JQuery_logo.svg.png" class="draggable" alt="jQuery logo" /> <img src="http://upload.wikimedia.org/wikipedia/en/a/ab/Apple-logo.png" class="draggable" alt="Apple Inc. logo" /> </div> <script> $(document).ready(function() { $(".draggable").draggable(); }); </script> </body> </html>
So, I have two images that need to be dragged and dropped. Now I'm testing this on my iPad, and only one image is dragged right away. But the iPad must support up to 11 fingers, so why is this impossible and what can I do to solve this problem? Or does it work with your multi-touch devices (iPhone, iPad, Android mobile phones or multi-touch display) and am I doing something wrong (settings) → http://jsbin.com/ayoba4/2 ?
Thanks in advance and best regards.
source share