Reputation:
I wonder what a click is on an iPad. in my code I use a jQuery click() event and when I tap on the element with click event bound to it, I get the right behavior but when I hold my finger for longer time than a single tap, nothing happens. what is this long press if it is not a click?
Upvotes: 2
Views: 3067
Reputation: 5330
if you want long press go this way
Also Try longclick with this plugin
$(element).longclick(500, function(){
$(element).html("long click works");
});
Upvotes: 1