window.status

wxdqz

New Member
The following code will display the word Hi There at the bottom of a window when the mouse if moved over the link, and when the mouse is moved away again it will display the word Done.
However when the link is being clicked it will display something like file:///c:/windows/hithere.html.
How do I get it to still display Hi There when the link is being clicked?

<a href=http://www.webdeveloper.com/forum/archive/index.php/"hithere.html" onmouseover="window.status='Hi There';return true;" onmouseout="window.status='Done';return true;">Hi There</a>
 
Back
Top