The usual:
document.body.addEventListener(\'touchmove\',function(event){event.preventDefault();},false);
isn\'t working for me. I am trying to
Put that handler on the document element directly, not on the body.
document
body
I've had success with the following:
Then with jQuery:
$(document).bind('touchmove', false);
This will also be useful if you want to handle different orientations: