I am trying to attach click event to anchor tags (coming from ajax) and block the default redirection. How can I do it in angular ?
You can use routerLink which is an alternative of href for angular 2.**
Use routerLink as below in html
My Link
and make sure you register your routerLink in modules.ts or router.ts like this
const routes: Routes = [
{ path: 'dashboard', component: DashboardComponent }
]