Dear All,
am trying to override the status bar message shown for a link as my client wants a custom message ALL the time, the following code seems to work for all events except OnMouseDown, any ideas ? needs to work with IE6 only :
Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006
am trying to override the status bar message shown for a link as my client wants a custom message ALL the time, the following code seems to work for all events except OnMouseDown, any ideas ? needs to work with IE6 only :
Code:
<html>
<head>
<script>
function clearStatus()
{
window.status="GREG";
}
function clearStatus2()
{
window.status="GRIFFITHS";
}
</script>
</head>
<body>
<a href="[URL unfurl="true"]http://www.greggriffiths.org"[/URL]
onmousedown="clearStatus()"
onmouseup="clearStatus()"
onmouseover="clearStatus()"
onmouseout="clearStatus()"
onclick="clearStatus()"
onmouseclick="clearStatus()"
onmousedblclick="clearStatus()"
onmousemove="clearStatus()"
onmouseenter="clearStatus()"
onmouseleave="clearStatus()"
>TEST</a>
<p>
<a href="[URL unfurl="true"]http://www.greggriffiths.org/livelink/"[/URL]
onmousedown="clearStatus2()"
onmouseup="clearStatus2()"
onmouseover="clearStatus2()"
onmouseout="clearStatus2()"
onclick="clearStatus2()"
onmousedblclick="clearStatus2()"
onmousemove="clearStatus2()"
onmouseenter="clearStatus2()"
onmouseleave="clearStatus2()"
>TEST2</a>
<p>
</body>
</html>
Greg Griffiths
Livelink Certified Developer & ECM Global Star Champion 2005 & 2006