Deb
07-06-1998, 02:41 PM
You may have noticed that on some pages when you have your mouse over a link, that a message appears on the bottom status line. Normally the URL or address of the link is displayed, but it is easy to change this browser feature.
here's the source code
<a href="/index.html" onmouseover=
"window.status=' Return to the HOME Page';return true"
onMouseOut="window.status='';return true">
HOME</a>
<a href="/Forums.html" onmouseover=
"window.status=' Return to the Forums Page';return true"
onMouseOut="window.status='';return true">
Forums</A>
IMPORTANT: Be sure that the entire line containing window.status is on one line. It is okay to wrap around, but if you break the line in between quotes you will get a java error!
here's the source code
<a href="/index.html" onmouseover=
"window.status=' Return to the HOME Page';return true"
onMouseOut="window.status='';return true">
HOME</a>
<a href="/Forums.html" onmouseover=
"window.status=' Return to the Forums Page';return true"
onMouseOut="window.status='';return true">
Forums</A>
IMPORTANT: Be sure that the entire line containing window.status is on one line. It is okay to wrap around, but if you break the line in between quotes you will get a java error!