Is there any way to completely disable web page scrolling in an iPhone web app? I\'ve tried numerous things posted on google, but none seem to work.
Here\'s my curre
Disable:
document.ontouchstart = function(e){ e.preventDefault(); }
Enable:
document.ontouchstart = function(e){ return true; }