Snippets
Here is your code snippet
Status bar text mouseoverChange the status bar message when the mouse is on a link
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<A href="http://www.programmershelp.co.uk" onMouseover="window.status='status bar text';return true" onMouseout="window.status='';return true">phelp</A>
</BODY>
</HTML>