Hide link text from statusbar in wordpress

admin

Administrator
Staff member
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:

Code:
<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.