So I want to make an anchor element on my Header disappear when a specific page is hit. How can I catch the url in the *ngIf
when that page is hit.
I have a header which will remain same for all pages. Just need to hide an anchor element when I am routed at /home
. How to catch this "/home"
in *ngIf
?
*ngIf = "href='/home'"
is not working. Any alternatives?