<aid="link"href="#">Click me</a><script>var router =newkendo.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");returnfalse;});});</script>