so I write this small app where I show some information fetched from Wikipedia. There are also links inside of this fetched HTML.
So what I want to do:
Every time the user clicks on a link I want to intercept this and do custom behavior instead of the default browser redirect.
The build in Angular httpinterceptor is not working here. How do I get this effect?
EDIT: seems like I misunderstood how the href and http requests work. Still I want to do custom behaviour on every link clicked on my application. Is there no possible way to intercept those "events"?
EDIT: For a Angular 2+ Solution look into my answer below. Its a service for intercepting tags.