I am developing an app that runs on Android/iOS and desktop computers.
Should I use the click or the tap event?
click
tap
What are the differ
You can use .on() to bind a function to multiple events:
.on()
$('#element').on('click tap', function() { ... });
Thanks to @bergie3000 for pointing to this