Status Bar Messages

This nice script will display a message in the status bar when you hover over the link that contains the script.

<a href="index.html" onMouseover="window.status=' HEY!LOOK DOWN HERE! THIS LINK WILL TAKE YOU BACK TO THE MAIN PAGE YO! '; return true" onMouseout="window.status=' '; return true">LINK TEXT</a>

That is just a standard link. With out the JavaScript it would look like this: <a href="index.html">LINK TEXT</a>

That above code will make this: LINK TEXT ( pssst, look at your status bar, the area in the lower left corner of the browser to see the message! )

Main?