Reputation: 13
How do I go from http://run.plnkr.co/jfGlh6QrAx48S4lZ/#!/main
to http://run.plnkr.co/jfGlh6QrAx48S4lZ/#!/services
using tag?
I tried through the following:
<a href="#/services">
but its not working it is going to http://run.plnkr.co/jfGlh6QrAx48S4lZ/#!/main#%2Fservices
Upvotes: 1
Views: 34
Reputation: 62566
You should use
<a href="#!/services">
The link that starts with the hash (#
) will keep the same URL you currently view and only change the hash part (the #
and everything after it).
Upvotes: 1