Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

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

irt.org | Knowledge Base | JavaScript | Status | Q1424 [ previous next ]

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

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>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.