I have created an anchor element that I'm using with a button role, so I haven't included the href attribute.
<a (click)="doSomething()" role="button">Some data></a>
When no href is set on an anchor element in Bootstrap, it loses its default style (blue color, underline, hover effects...).
Is there a way to maintain the Bootstrap style for an anchor without the href attribute?