doubleTapTimeout Number (default: 400)

The maximum period (in milliseconds) between two consecutive taps which will trigger the doubletap event.

Example

<div id="touch">
    Double tap here
</div>

<script>
$("#touch").kendoTouch({
    doubleTapTimeout: 2000,
    doubletap: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("two taps");
    }
});
</script>
In this article