I have a webapp created with JQuery Mobile v1.3.2 implementing IScrollView. When I'm scrolling the map vertically the Scroll View scrolls also. Is there a way to disable that behaviour, to cancel iscroll scrolling when scrolling the gmap?
Thanks in advance.
The problem is that the map still seems to propagate touch events to iscroll. Let's try to prevent this by stopPropagation();
Edit
Here is the working jQuery mobile fiddle
A fiddle with plain javascript here.
P.S.
Find here The link to the stopPropagation docs, comes in very handy some times ;)