Be it far beyond me as to why but I am merely a worker bee the customer has decided that he doesn't want the links URL to appear in the status bar but instead wants a message like "Click to open" to appear instead.
I've looked up a few different ways but the way I've seen doesn't actually work. I would like code that will work for all links that I can just shove into a global script instead of adding a function to each individual links.
This does NOT work
<script language="javas cript">
function hidestatus(){
window.status=' '
return true
}
if (document.layer s)
document.captur eEvents(Event.M OUSEOVER | Event.MOUSEOUT)
document.onmous eover=hidestatu s
document.onmous eout=hidestatus
</script>
If I use the hidestatus function in a link that calls it--it does work however is there a way to do this automatically so I don't have to go through five bazillion links?
What works:
<a href="test.aspx " onmouseover="re turn hidestatus()">T est Page</a>
I've looked up a few different ways but the way I've seen doesn't actually work. I would like code that will work for all links that I can just shove into a global script instead of adding a function to each individual links.
This does NOT work
<script language="javas cript">
function hidestatus(){
window.status=' '
return true
}
if (document.layer s)
document.captur eEvents(Event.M OUSEOVER | Event.MOUSEOUT)
document.onmous eover=hidestatu s
document.onmous eout=hidestatus
</script>
If I use the hidestatus function in a link that calls it--it does work however is there a way to do this automatically so I don't have to go through five bazillion links?
What works:
<a href="test.aspx " onmouseover="re turn hidestatus()">T est Page</a>
Comment