I am creating a little web app for the iPad and I\'ve got several elements I am preventing the user from scrolling by preventing default on the touchmove event. However, I h
This should work:
$(document).on('touchmove', function(e) { if (!$(e.target).parents('.scroll')[0]) { e.preventDefault(); } });