start

Activates the router binding to the URL changes.

The start method should only be called once the routes have been registered. Otherwise the route for the current page/fragment will not be called.

Example

<script>
var router = new kendo.Router();

$(function() {
    router.start();
});
</script>
In this article