Reputation: 51
I am developing an Android application using Phonegap. In Google Nexus phone, when I click once, it takes the click twice means the function I am calling will be executed twice.
How can I resolve this issue?
Upvotes: 0
Views: 176
Reputation: 170
call the function on your button or href like this:
$('#buttonID').off("click").on("click", function () {
});
Upvotes: 1