user2103013
user2103013

Reputation:

How to click and long press on iPad?

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

Answers (1)

Arunkumar Vasudevan
Arunkumar Vasudevan

Reputation: 5330

if you want long press go this way

Reference

Also Try longclick with this plugin

$(element).longclick(500, function(){
$(element).html("long click works");
});

Upvotes: 1

Related Questions