I’m using this code to change the status bar of IE.
<a href="http://www.google.com" onmouseover="window.status='Google';return true;">Google</a>
But the problem is when i’m using a menu (links inside a div) it doesn’t change anymore the status bar. Is there any way to fix it?
Here’s an awesome solution
No, but really though – this practice this a little outdated. Users expect to be able to see the URL of the link they’re about to click to ensure it is legit. If you want to give people more information about a link, encode it either in the paragraph (eg: “take a look at this big search engine or this up-and-coming one“), or use the
titleattribute on the link. The text you enter there will appear in a tooltip if the user hovers on the link.