0

Is there any way to differentiate between click and long click in html while using Phonegap? I have used js plugins for long tap/click and they are working good but i have to call different functions on both gestures but long click also executes the click function. Any ideas?

Baxethov
  • 71
  • 1
  • 7

1 Answers1

1

I think you have to catch "touch begin" and "touch end" event, start a timer, if timer if touch ends before timer fires it is a short touch and if timer fires its a long one.

Starbax
  • 1,005
  • 2
  • 12
  • 32