Mega Code Archive

 
Categories / JavaScript Tutorial / HTML Tags
 

Update window status bar in mouse over event for a hyper link element tag(IE)

< html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- function addMsg() {     window.status="Sample image";     return true; } //  --> </script> </head> <body> <a href="http://www.rntsoft.com" onMouseover="window.status='Sample image';return true" onMouseout="window.status='';return true"> <img src="http://www.rntsoft.com/style/logo.png" border="0"> </a> </body> </html>