Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 352 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 352 Bytes

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){
	// ...
});