Hi all,
I am trying using draggable jquery from
here and develop it
working properly on any browser but not on touchsreen like Ipad,
i have tried using jQuery UI Touch Punch from here, but still not work.
Here
the sample,
Thanks in advance for help
here my script:
-
//draggable
$('#magnify-glass').draggable({
axis: "x",
containment: "parent",
snap: '.snap',
snapMode : 'inner',
snapTolerance : 30,
cursor: 'move',
drag: function(event, ui) {
updateImagePosition(event, ui);
}
});
}
})();