stop
Stops listening to the data observable and tears down any setup bindings.
route.stop()
Stops listening to changes in the URL as well as the observable defined in data, and removes the current binding.
route.register( "{page}", { page: "home" } );
route.start();
route.data.page = "home";
route.stop();
route.data.page = "cart"; // hash is still #home
Use
If you need to disconnect an observable from the URL, call stop:
route.stop();
To reconnect, call start again.