Is there a way to enable the link in CSS while still showing the title? Take a look at my code:
CSS and HTML Code:
.disabledLink {
pointer-events: none;
opacity: 0.6;
cursor: default;
}
<a href="www.google.com" class="disableLink" title="My Title" />
<span datahover="test">My Link</span>
</a>
Upon hovering over the link, the title doesn't appear as expected. Any suggestions on how to properly show the title?