http://aarongloege.github.com/jquery.tap/ A jQuery plugin that creates a click alternative for touch enabled browsers.
Click events on touch devices do not work the best. There is a ~300ms delay from when you release your finger to the time the click event is triggered. This behavior is not desired. :(
What is nice about this plugin, and what makes it different from other plugins, is that it takes advantage of jQuery's special event API, so you can use jQuery.on to bind events.
// jQuery.on method
$('.element').on('tap', onTapHandler);
$('.element').on('tap', dataObject, onTapHandler);And, because the event is bound through jQuery's on API, you can take advantage of namespaces and delegate events:
// Namespace
$('.element').on('tap.widget', onTapHandler);
$('.element').on('tap.widget', dataObject, onTapHandler);
// Delegate
$('.element').on('tap', '.child-element', onTapHandler);
$('.element').on('tap', '.child-element', dataObject, onTapHandler);
// Together now
$('.element').on('tap.widget', '.child-element', onTapHandler);
$('.element').on('tap.widget', '.child-element', dataObject, onTapHandler);The tap event will also bubble.
If the browser does not support touch events, then the regular mouse events to create a tap event. No need for if/else statements, jQuery.tap will do that for you.
Gotcha covered. jQuery.tap listens for both touch and mouse events and will use the first event that is fired to detect a tap.
There is currently not a way to stop the click event from triggering after touchstart/touchend and mousedown/mouseup events if the tap event is canceled with preventDefault(). The click event will still fire, but preventDefault will be called on that click event if preventDefault was called on the tap event.
You can view an integration test here and you can test support for yourself here.
jQuery.tap is licensed under the MIT license.