Put your mouse over here

Put you mouse over here too
This form of javascript is only for links. The only two I know of right now are On Mouse Over and On Mouse Click. It is just a little tiny thing to add to your page that will make it nice.
The source...



<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function mg(txt) {
   window.status = txt;
}
// -->
</script>

<a href="" onmouseover='mg("You can get a text message to come up"); return true'>
Put your mouse over here</a>

The source...


<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.oocities.org/ResearchTriangle/1500

function or() {
   alert ("Or you can get an alert or confirm message to show up");
}
// -->
</script>

<a href="" onmouseover='or()'>Put you mouse over here too</a>