Is there a way to completely eliminate the default browser tooltip that appears when hovering over truncated text within a link?
The text is being truncated due to the following CSS ellipsis rule:
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
After applying these rules to a fixed width div, an HTML tooltip seems to appear (specifically in Safari, not in Firefox or Chrome.)
Check out this jsfiddle link.
I have attempted using JS with preventDefault
and adding an empty title
attribute, but neither have been successful.