Nic's Javascript Page
On Mouse Over Script
Something Else
Isn't this like that "On Mouse Over" script with the "Window
Statusbar"? Actually, it is. Something I've forgotten to
mention in other scripts is that you can switch almost any form
script to window statusbar script (visa-versa) by changing the
"document.XX.YY.value" to "window.status" (visa-versa agian).
Knowing that, you can create new scripts from my sample ones by
just experimenting a little.
The source...
<script language="JavaScript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
function text(txt) {
document.theform.thetext.value = txt
return true;
}
// -->
</script>
<form name="theform">
<center>
<input type="text" name="thetext" size=50>
</center>
</form>
<a href="index.html" onmouseover="text('Nic\'s Javascript Page')">Nic's Javascript Page</a><br>
<a href="mouseovr.html" onmouseover="text('On Mouse Over Script')">On Mouse Over Script</a><br>
<a href="/SoHo/1449" onmouseover="text('Something Else')">Something Else</a>
Main Page