I have added the jquery mobile js library to my app. I have made a list sortable (by drag and drop) by adding this code:
$("#productList_menulist").sortable({
change: function(event, ui) {
window.productListSorted = false;
}
});
$("#productList_menulist").disableSelection();
This works ok in the browser test window but not on the mobile device (a Galaxy S3 running Android 4.3).
Can you tell me what I have to do to get this working on the mobile device?