I have a Phonegap 3 app that uses jQuery Mobile 1.4 and Backbone.js.
In this app I use the 'swipeleft' and 'swiperight' events to show different parts of a form (swipes show previous/next div).
This works fine but my issue is that if I swipe with my finger on top of checkboxes, the checkbox receives the tap event before the swipe is fired so the checkbox state is changed.
I see this also with other widgets but the checkbox seemed enough to explain the issue.
I don't have the issue on chrome on a desktop computer nor with the new chrome webview in Kitkat but have the problem in Gingerbread and Jelly Bean (the older webkit webview).
I stop the propagation of the swipe event in the event-handling function, but since the "unwanted" tap is fired before, that has no much effect...
Is there something I can do to avoid the tap event being fired during a swipe in the Android webview?
tap
event? – Hindorff