iOS 5 now allows native overflow: scroll support.
What I\'d like to do is disable the touchmove event for everything except elements that have the \'scrolla
touchmove
If you write this in jquery document.ready event it will work.
$('body').on('touchmove', function (e) { if ($(e.target).closest("your_scrollable_div_selector").length == 0) e.preventDefault(); });