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>