I can't seem to find any straightforward way of fixing this? I can't wrap my head around Google's Fast Buttons approach. So if anyone has an alternative, that would be really nice.
The ghost clicks I'm talking about is referring to the touch on a button or something that triggers it multiple times. For example, clicking a button that will show alert("hello"); will show that said alert box 2 or sometimes even 5 times.
This is part of my code that handles button pressing. I omitted some parts but basically, that's the mechanism that handles presses on the "add" button.
$('div:jqmData(role="page")').live('pagebeforeshow',function(){
var db = window.openDatabase("mydb", "1.0", "MyDB", 1000000);
var url = window.location.href;
var filename = url.substring(url.lastIndexOf('/')+1);
switch (filename) {
case "index.html":
$("#add").tap(function(e){
if ($("#info").val() == "") {
navigator.notification.alert("The info cannot be blank!", function(){}, "Error", "Okay, got it!");
} else {
db.transaction(addToDb, errorCB, addedToDb);
}
});
break;
case "sample.html":
break;
}
});