Martin Robins
Martin Robins

Reputation: 6163

Preventing tooltip display for hyperlinks in IE

Does anybody know how to get rid of the annoying tooltips that pop up in the bottom left of IE when you hover over a hyperlink?

An example of the tooltip IE renders at the bottom left of the screen and I would like to control

Alternatively, is there a way to set my own text against said hyperlink instead (I have tried setting the Title attribut but this shows up as well as the default rather than instead of).

Thanks.

Upvotes: 0

Views: 1826

Answers (2)

SoWhat
SoWhat

Reputation: 5622

Change the alt tag as well or better use a js solution for a better tooltip. That should change the tooltip

 <a href="#" alt="title" >Link</a>

You cannot change the status bar text anymore. In older browsers you could use window.status="" but it is not supported in any browsers anymore

http://www.w3schools.com/jsref/prop_win_status.asp

Upvotes: 0

Jukka K. Korpela
Jukka K. Korpela

Reputation: 201538

The status line display (it’s not a tooltip, and it’s not a popup) is a browser feature and cannot be disabled by code on your page. It is there for a reason: it lets the user see the destination of a link, which helps to prevent some types of fraud.

Some early browsers allowed authors to put their text on the status line, but this feature was regarded as too risky and has generally been removed.

Upvotes: 3

Related Questions