doubletap
Fires when the user quickly taps twice on the element.
The two taps should be at a maximum distance of 3 pixels.
Example
<div id="touch">Touch here</div>
<script>
/* The result can be observed in the DevTools(F12) console of the browser. */
$("#touch").kendoTouch({ doubletap: 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.