I am developing an app that runs on Android/iOS and desktop computers.
Should I use the click
or the tap
event?
What are the differences between them?
Will the 'tap' work on desktop? if not, (and I have to use click
) am I missing any advantages that the tap
has over the click
?
I would look into the jQM Documentation for Events, the current docs are here:
for a Mobile device use touch events, if you need mouse events jQM provides Virtual mouse events for this as well.
I'm not saying the 'click' event wont work as it still does, for example you can click a button. But there will be different events for Mobile devices verses Desktops
You can use.on()
to bind a function to multiple events:Thanks to @bergie3000 for pointing to this
Sorry for bringing up old post, but for anyone who's working on jQuery with Phonegap:
"click" event will not be triggered if assigned on "div", "p" etc. elements that were not suppose to be clicked, when "tap" makes it working perfectly on any element! That took me ages to notice.
Conclusion, if you do develop something with jQuery mobile, I would suggest using "tap" instead of "click", as it might cause some issues
Touch events and mouse events are entirely different beasts. They are not interchangeable.
That said, I'm using jQuery Touch Punch which maps touch events to their mouse event analogs, so a tap becomes the same thing as a click. This makes it possibly to use all the standard jQuery UI goodness without having to do any special touch event programming. It's extremely simple to use, and so far has worked perfectly for me on both iDevices and Android.