| Update the Window Status on MouseOver and Mouseout |
|
Try the following example to see how you can modify
the window status (at the bottom of your browser) when the visitor
hovers over a link. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title> Page Title </title> <script> function showStatus(sMsg) { window.status = sMsg ; return true ; } </script> </head> <body> <a href="http://www.psacake.com" onMouseOver="return showStatus('Go to psacake');" onMouseOut="return showStatus('');">psacake</a> </body> </html> |