I have a treeview implemented in CSS, when a user clicks on a folder in a tree, I would like to update the URL in the address bar without causing a server callback.
HTML looks something like this: -
<ol> <li> <a href="www.example.com/blah?id=12345">Folder</a> <ol> <li>Child</li> </ol </li> <ol>
In the CSS that I am processing, the folder expands, but I would like the URL of the address bar to be updated, so I can deeply bind to a specific folder, but there is no need from the code point of view to make a round-trip server Is there a way to achieve of this? I have a feeling that this may not be possible due to a fictitious infection ???
I use HTML5, CSS2 / 3, jquery and ASP.NET MVC3
source share