Snap to touchmove and prohibit the action that scrolls
document.body.addEventListener('touchmove', function (ev) { ev.preventDefault(); });
Or using jQuery
$('body').bind('touchmove', function (ev) { ev.preventDefault(); });
EDIT: I really came across another solution that could be even simpler try this
body { overflow: hidden; }
source share