dragend
Fires when the user lifts his/hers finger, or drags outside of the element boundaries.
Example
<div id="touch">Touch here</div>
<script>
/* The result can be observed in the DevTools(F12) console of the browser. */
$("#touch").kendoTouch({ dragend: 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.