Say that my navbar has these two URLs:
<a href='/action#?action_type=test'>test</a>
and
<a href='/action#?action_type=tset'>tset</a>
My problem is, say that you're in the 'test' page, if you click on the tset page it will just change the hash params and not force a load. The reason why I'm not using onclick listeners instead is because I want to let the user be able to ctrl + click on an element if they want it in a new tab. If I use onclick listeners that feature seems to go away. How should I proceed about this?