Is there any way to remove the tooltip from title attribute without actually remove the title.
I have a link with a title attribute like this
<a href="url" title="anotherURL"></a>
It is important that the title is intact since I need to read the url from there. All the fixes for this that I have found is to remove the title attribute and reuse it but in this case this is not possible.
Any ideas?