New to Kendo UI for jQueryStart a free 30-day trial

Navigate

methods

Navigates to the given route.

Parameters:routeString

The route to navigate to.

<a id="link" href="#">Click me</a>

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

router.route("/items/:category/:id", function(category, id) {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log(category, "item with", id, " was requested");
});

$(function() {
  router.start();
  $("#link").click(function() {
    router.navigate("/items/books/59");
    return false;
  });
});
</script>
Not finding the help you need?
Contact Support