Triggered when pane navigates to a view.

    <div data-role="splitview">
      <div data-role="pane" data-navigate="onNavigate">
          <div data-role="view" id="foo"> Bar </div>
          <div data-role="view" id="bar"> Foo </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