There's a lot of snippets to stop the rubber-banding on iPad, like the one below:
document.body.addEventListener('touchmove',function(event){ event.preventDefault(); },false);
However this has the unwanted effect of preventing all divs with overflows on them from scrolling too?
Is there a way to just top the page (body) from rubber-banding while still allowing the overflowed-scrolled divs to do so?