dragstart

    Fires when the user starts dragging the element.

    Example

    Open In Dojo
    <div id="touch">Touch here</div>
    
    <script>
    /* The result can be observed in the DevTools(F12) console of the browser. */
    $("#touch").kendoTouch({ dragstart: 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.

    In this article