tap
Fires when the user taps on the element. A touch sequence is considered a tap if the user does not perform dragging.
Example
<div id="touch">Touch here</div>
<script>
/* The result can be observed in the DevTools(F12) console of the browser. */
$("#touch").kendoTouch({ tap: function (e) { console.log(e); } });
</script>
Event Data
e.touch TouchEvent
The touch event instance
e.event jQueryEvent
The jQuery event which triggered the touch event.