router kendo.Router
the router instance used by the mobile application for navigation purposes.
The mobile application binds to the routeMissing
router event handler, so registering routes will take precedence over the default mobile app actions.
<div data-role="view">Hello!</div>
<script>
$(function() {
var app = new kendo.mobile.Application();
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(app.router);
});
</script>