0

Hi what are the best practices and fastest events for click events with buttons, links and selects for Phonegap 3.3 and jquery mobile 1.4 ?

Click, tap, vmousedown ?

Thanks

Louis
  • 2,548
  • 10
  • 63
  • 120

1 Answers1

2

If you are working with jQuery Mobile then it is a vclick.

Unlike tap and click it will work on desktop and mobile browsers alike, and unlike click event this one don't suffer from 300ms delay.

Read my other answer to find out more.

$(document).on('vclick', '#someButton', function(){ 

});
Community
  • 1
  • 1
Gajotres
  • 57,309
  • 16
  • 102
  • 130