This:
$(\'body\').on(\'touchmove\', function(e) { e.preventDefault(); });
Works, but will disable scrolling throughout the whole page, whic
Did anyone ever consider just using position fixed on the body? That is a nice, simple and native solution. No Javascript needed.
body{ position: fixed; }