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
I had pretty much the same issue. This should help you:
// Disable overscroll / viewport moving on everything but scrollable divs $('body').on('touchmove', function (e) { if (!$('.scrollable').has($(e.target)).length) e.preventDefault(); });