I have a problem with my phonegap application on Android. When I tap on a list item, the tap seems to follow through to the next page and the item in the same location as where I had pressed on the previous page is also pressed.
There are two cases where this happens, the first where pressing on a list view item opens a page with a sub-list. And the second where pressing on a list item opens a form. Note that if I long-hold press on an item, this problem does not occur.
This is not a problem when the app is run on iOS.
Any ideas on how to prevent this?
EDIT: Click handler after update (but still suffering with the click-through):
$(parentListView).on('click', 'li', function(event) {
event.stopPropagation();
event.stopImmediatePropagation();
$.mobile.changePage("#care-plans?id=" + this.id + "&" +
"name=" + this.name, {
transition : "none",
});
});