click

Fires when the user taps the button.

Example

<div data-role="view">
  <a id="btn" data-role="button" data-click="onClick">Click me!</a>
</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