I\'m trying out phone gap and I want my application to not scroll up and down when the user drags their finger across the screen. This is my code. Can anyone tell me why it\
At first what you have to do is you should add the event listener in body unload method.
simply put this line in the touch move method.
it won't scroll document.addEventListener("touchstart/touchmove/touchend"). Any one of these 3.
function touchMove (event e) { e.preventDefault; }