I'm implementing an app that uses the browser's history to maintain its state (using History.js, but the specific framework shouldn't matter much here). In the app, there are two sets of buttons: one set for filtering the view, and one set for sorting it. The filter and sort criteria should be preserved in the url. Pretty standard stuff so far.
Now, I'd like the filter and sort action to be invoked through clicks on anchor tags with hrefs -- rather than via javascript click-event handlers. In other words, the "Sort by name" button would look something like:
<a href="/#?sort=name">Sort By Name</a>
and a filter button would be
<a href="/#?filter=usa">USA Only</a>
A different way to do this would be to listen to click events on these buttons and, on click, call History.pushState(...) to get window.location to represent the new state. However, I prefer the anchor tag / href approach because, for example, it allows users to command+click (or ctrl+click) the anchor tag to open a new window.
My problem is that with this approach -- and given that there are 2 url params (sort and filter) -- clicking an anchor tag of a sort button would clear the current filtering criteria, if present. E.g, if the current url state is /#?sort=price&filter=usa and the user clicks "Sort By Name", they'd get /#?sort=name instead of the desired /#?sort=name&filter=usa.
I can think of only one way to work around this: modify the hrefs of all the anchor tags on the page every time the state changes, such that subsequently clicking them would preserve the non-changing part of the state. That sounds complicated and crazy. Is there a simple way of doing this that I'm not aware of? Has anyone done something like this before?