I create a web application with HTML5, CSS3 and jQuery, jQuery UI and jQuery Mobile. Now I have a little 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>
<!-- UPDATE: I USE THIS PLUGIN: http://code.google.com/p/jquery-ui-for-ipad-and-iphone/ -->
<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 which should be draggable. Now I test this on my iPad and only one image at once is draggable. But the iPad should support up to 11 fingers, so why isn't it possible and what can I do to solve this problem? Or does it work with your multitouch devices (iPhone, iPad, mobile phones with Android, or multitouch display) and I do something wrong (settings) -> http://jsbin.com/ayoba4/2 ?
Thank you in advance & Best Regards.