I have html code coming from database, it is being rendered with the help of innerHTML.
<li class="info-font" *ngFor="let item of element.instructionData" [innerHTML]="item"></li>
It may or may not contain links.
"instructionData": [
"Please make a Quick Request <a target='blank' href='https://google.com'>here</a>",
"Follow the steps mentioned the document"
]
I want to do some stuff with all the links which are clicked, those are within the html code coming from db.