This:
$(\'body\').on(\'touchmove\', function(e) { e.preventDefault(); });
Works, but will disable scrolling throughout the whole page, whic
Just add a -webkit-overflow-scrolling: auto; to the div you want to prevent from bouncing
-webkit-overflow-scrolling: auto;