Triggered when pane navigates to a view.

Example

<div data-role="splitview">
  <div data-role="pane" data-navigate="onNavigate">
      <div data-role="view" id="foo"> <a data-role="button" href="#bar">Bar</a> </div>
      <div data-role="view" id="bar"> <a data-role="button" href="#foo">Foo</a> </div>
    </div>
 </div>

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

new kendo.mobile.Application();
</script>

Event Data

e.url jQuery

The URL of the view

In this article