I would like to disable the iOS overscroll in a webapp but still allow the body to be scrolled.
$(document).on(\'touchmove\', function(e) { e.preventDefa
document.body.addEventListener('touchmove',function(e){ if(!$(e.target).hasClass("scrollable")) { e.preventDefault(); } });
Try this i just got in via google