Yes, you can do it through jQuery. You can set any binding with the class
<a href="#someUrl" class="navigator (other class)" >MyAwesomeLink</a>
Then in jQuery
$(".navigator").click(function(e){ var url = $(this).attr('href').replace('#',''); window.location.href = "PATH"+url; e.preventDefault(); }
You can even "unlock" and enable href without a "#" simbol, but I prefer this method IMHO, it's better if you handle it.
source share