click

Fires when the user taps the button.

    <div data-role="view">
      Click me!
    </div>


    <script>
    var app = new kendo.mobile.Application();

    function onClick() {
    /* The result can be observed in the DevTools(F12) console of the browser. */
      console.log("clicked");
    }
    </script>

Event Data

e.target jQuery

The clicked DOM element

e.button jQuery

The button DOM element

In this article