jQuery.event.special.tap
Event raised when after a complete cycle of pointerstart and pointerend which completes in under 350 ms and moves no more than 10 pixels.
Bubbles and can be delegated against.
Usage
$(element).on('tap', function(e){
    // handle event...
});
Data on the event
- pointers: array of Pointer objects, each with- pageXand- pageYproperties
- originalEvent: Native event object which was re-interpreted as a- tap
- duration: duration of the tap
 
				