I have a site with a JStree. It pulls its data from a JSON object. When you click on a JsTree node, it loads the appropriate DB data, which is converted JSON and then shown.
The thing is, now we want to have URLs that correspond to whats happening on the page. Because everything is happening with AJAX, the URL is staying the same.
So when someone clicks on the Category Wordpress-> Business -> Financial, it'd be great if the URL could change to www.domain.com/wordpress/business/financial, and have the params pulled from the URL< to get the the appropriate database data, based on those params.
Is this possible? And is it possible to do this without page reloads? As in, just update the address bar, and JQuery can oull the params and get the corresponding data?
I know this is a broad question, but I'm not even sure really where to start