<html>
<head>
<script>
function go() {
window.status='Mouse Down';
Quote:
}
function go2() {
window.status='Mouse Up';
Quote:
}
</script>
</head>
<body>
<A HREF=# OnMouseOver="window.status='MouseOver';return true;" OnMouseDown="window.setTimeout('go()', 200);return true;" OnMouseUp="window.setTimeout('go2()', 200);return true;" OnMouseOut="window.status='MouseOut';return true;"><img SRC="" height=25 width=95></A>
</body>
</html>
--
Mark L. Ferguson Reply Only in Newsgroup
marfer's notes for OE 5.0 > http://www.geocities.com/SiliconValley/Bay/6386/IE_ng_notes.htm
Quote:
> Hi
> If I use the following code it works fine in Netscape but not in IE
> <A HREF="myfile.html"
> OnMouseOver="window.status='MouseOver';return true;"
> <!-- prints MouseOver in status bar-->
> OnMouseDown="window.status='MouseDown';return true;"
> <!-- prints MouseDown in status bar--> no it doesn't
> OnMouseOut="window.status='MouseOut';return true;">
> <!-- prints MouseOut in status bar-->
> <img SRC="images/mypic.gif" height=25 width=95></A>
> Is there any way I can get the onMouseDown to alter the text in the status
> bar?
> I want it to display my text rather than the URL specified in HREF.
> Thanks
> Dave