TabFern
TabFern copied to clipboard
How to get rid of Chrome link preview (if you want)
When the mouse hovers over tab links, or the option button, chrome displays a link preview at the bottom of the window. If you want to get rid of this there is a simple solution.
If the href
attribute is not used (an onclick event is doing all the job), you remove the attribute completely.
A consequence is that the mouse pointer doesn't change to the "pointer" icon. You'll have to style the element (:hover
and cursor: pointer;
). Another consequence is that you can use all types of tags, not only <a>
.
Thanks for the idea! Related to #104.