Confirmado que el jquery-ui-touch-punch de furf funciona en el iPad.
Hacerlo funcionar es tan fácil como incluir "jquery.ui.touch-punch.js" después de haber incluido jquery-ui y jquery. Por ejemplo:
HTML:
<head>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.17.custom.min.js"></script>
<!-- touch capability for tablets/phones -->
<script type="text/javascript" src="js/jquery.ui.touch-punch.js"></script>
</head>
Javascript:
//
// assume that html_string is a valid string
// containing some element you want to be draggable
// which needs to be added to the DOM
//
function addItemToUIList (list, html_string) {
var item = $(list).append (html_string);
// now, using jqui and touch-punch, we can make it draggable
item.draggable();
}
ahora "elemento" se pueden arrastrar alrededor de la pantalla en el iPad, así como en cromo en el escritorio.
gracias, exactamente lo que necesitaba. – cgTag
desafortunadamente esto deshabilitó la funcionalidad de desplazamiento si tiene muchos elementos que se pueden arrastrar ... – tmaximini