Mega Code Archive

 
Categories / JavaScript Tutorial / Window
 

Window status

Syntax window.status = string The status property specifies the message that is displayed in the status bar. When setting the Window.status property, be sure that your function returns true. <html>     <a href="http://www.rntsoft.com"        onMouseOver="window.status='Please Visit Our Online Book!'; return true"        onMouseOut="window.status='Document: Done'"        >Click Here!</a> </html>