Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1424 Why won't Microsoft Internet Explorer 5 show the a message in the status bar when using onMouseOver?

You are here: irt.org | FAQ | JavaScript | Status | Q1424 [ previous next ]

It's a bug in Internet Explorer 5. To workaround include a delay:

<html>
<head>
<script language="JavaScript"><!--
function showStatus(text) {
    window.setTimeout('window.status="' + text + '"', 1);
}
//--></script>
</head>
<body>
<a href="somewhere.htm" onMouseOver="showStatus('status message');return true" onMouseOut="window.status='';return true">link text</a>
</body>
</html>

©2018 Martin Webb