How can I prevent overscroll in Safari iOS? I would use the touch gesture for navigate on a site but I can\'t.
I tried this:
$(window).on(\'touchstart\',
This Should be the easiest way to accomplish this:
$(function() { document.addEventListener("touchmove", function(e){ e.preventDefault(); }, false); });
Hope this helps.
Best.