touchy

Stars
16
Committers
1

Adds jQuery special events: (double) tap / swipe

This will add support for these events: Tap, Double Tap and Swipe (vertical and horizontal).

A test page is included.

How to use:

$(elm).on('tap', callbackFunction);
$(elm).on('doubleTap', callbackFunction);
// swipe
$(elm).on('swipe', function onSwipe(e, Dx, Dy){
	// ...
});