Weird one here. Earlier I was messing around with preventing the default touchmove behavior in an iOS webapp I'm building. It's easy enough to add the event listener and prevent propogation, but I need to add the default behavior back to one of it's children. As I understand it though, because the parent is disabled the child will never register the event.
So I need a solution.
Essentially, there's a lot of swiping going on, so the default body-scrolling behavior needs to be knocked out. The page sliding around while swiping is infuriating. Naturally, I have to add the event listener to the outside container. Can't avoid it.
How can I add back the default, browser controlled behavior to one of the children? I don't want to fake it with my own physics and all.
Thanks for your help.
HTML:
<div id="mainPanel"> <!-- add event listener and preventDefault(); -->
<div id="nonScrollingPanel></div>
<div id="scrollingPanel></div> <!-- add event listener and re-enable default -->
</div>
JavaScript:
$bod.on('touchmove', '#mainPanel', function(event){
event.preventDefault();
});
$('#mainPanel').on('touchmove', '#scrollingPanel', function(){
return true;
});
