[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: onMouseOver



>Has anyone found out how to reset the status bar to it's default setting 
>--after-- the mouse has passed over a link?
>

I have written a small script which solves this problem with a simple timer:

<html>
<head>
<script language="JavaScript">
<!-- Hide
function moveover(txt) {
   window.status = txt;
   setTimeout("erase()",1000);
}
function erase() {
   window.status="";
}
// -->
</script>
</head>
<body>
  <a href="dontclck.htm" onMouseOver="moveover('Disappearing!');return true;">
link</a>
</body>
</html>


I hope this helps,
Stefan

---------------------------------------------------------------
100613.3663@compuserve.com
http://ourworld.compuserve.com/homepages/vood   (Introduction to JavaScript)
BTW: The CIS- Server is down at the moment- so you can't access my page. But I
hope this problem will be solved in the next days because I have written some
further parts for my page.

--------------------------------------------------------------------
This message came from the mailing list javascript. For help using the
mailing list software, please send a message to 'majordomo@obscure.org'
with the message body 'help'. To unsubscribe, send a message to
'majordomo@obscure.org' with the message body 'unsubscribe javascript'.