user1724555
user1724555

Reputation: 51

Phonegap Click issue in Nexus Jellybean phone

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

Answers (1)

MehrozKarim
MehrozKarim

Reputation: 170

call the function on your button or href like this:

$('#buttonID').off("click").on("click", function () {

});

Upvotes: 1

Related Questions