The only thing I found to do touchmove was to do something manually, encoded as follows:
(function(){ var isDown = false , dragging ; $('body').bind('mousedown', function(){ isDown = true; }); $('body').bind('mousemove', function(){ if(isDown) { dragging(); } }); $('body').bind('touchmove', function(){ dragging(); }); $('body').bind('mouseup', function(){ isDown = false; }); dragging = function () { console.log('content being drug'); } })();
Simplgy
source share