Here's the HTML code I've been working on:
<div id="Navigation" class="md-dialog-full">
<div class="products-options">
<a ng-click='addType("Physical")' href="javascript:void(0);">
<h1>Physical</h1>
<label>An item that is shipped to your customers</label>
</a>
<a ng-click='addType("Digital")' href="javascript:void(0);">
<h1>Digital</h1>
<label>Content that is downloaded</label>
</a>
<a ng-click='addType("Service")' href="javascript:void(0);">
<h1>Services</h1>
<label>Provide a Service</label>
</a>
</div>
</div>
I've been trying to find a way to highlight the clicked hyperlink, but most methods I found online are related to the URL of the link. Can anyone help me with this? I managed to use hover to highlight links when hovering over them, but I'm struggling with highlighting the link that has been clicked.