views:

244

answers:

2

Hi,

I have a text widget in my wordpress blog. Inside the text widget, i have a link. When mouse is hovered over the link, the link text shows up in the status bar. To prevent the link text from showing in the status bar i tried using:

<a href="#" onmouseover="window.status=''" onclick="fun();return false;" >  </a>

But, still the link text shows up in the status bar, when mouse is hovered over the link . i guess thats because the link is inside a text widget, so the status bar is inaccessible.

Still, is there any way to hide the link from showing up in the status bar when mouse is hovered over a link inside a text widget in wordpress ?

Thank You.

+5  A: 

Since hackers abused this for malicious reasons, most browsers don't allow to modify the status line this way.

Aaron Digulla
A: 

If you don't want status text in your status bar - don't use link, use button or span, styled as link.

Anatoliy