Forum Moderators: open
<a href="http://www.widgetsite.com" onMouseover="write_it('Widgetsite');return true;" onMouseout="write_it('');return true;">Widgetsite as an example</a>
I want that when the visitor might click with his right mouse button on this link, that he still sees "widgetsite" in the status bar and not "http://www.widgetsite.com".
Is this possible?
Istvan
If you want to give a "friendly name" to your link, Javascript is the wrong way to go about it. Instead of changing the status bar text, fill in the title attribute -- interpreted by many browsers as a tooltip.
<a href="http://www.widgetsite.com" title="Widgetsite">Widgetsite as an example</a>