JavaScript mouseover script

This JavaScript will display a message in the browser's status bar the cursor over a link.

Try it:

Move your cursor over this link

The Javascript code for this is:

<A HREF="" onMouseover="window.status='Well Done'; return true">Move your cursor over this link</A><A HREF="" onMouseover="window.status='Well Done'; return true"onMouseout="window.status=' '; return true">Move your cursor over this link</A>

Share/Save