Calling the preventDefault method of the event object will stop the change and restore the previous URL.
<aid="link"href="#">Click me</a><script>var router =newkendo.Router();
router.route("/items/:category/:id",function(category, id, params){/* The result can be observed in the DevTools(F12) console of the browser. */console.log(category,"item with", id," was requested by", params.user);});
router.bind("change",function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("change event", e);});$(function(){
router.start();$("#link").click(function(){
router.navigate("/items/books/59?user=John");returnfalse;});});</script>