edwin_javier
06-20-2002, 07:46 AM
<script>
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT )
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
I use this for protection to hide the link of my menu. But once i click the menu i can still see the link of my menu at the status bar. Is there a way that once i click my menu the link in the status bar is not visible.
Edwin
function hidestatus(){
window.status=''
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT )
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
I use this for protection to hide the link of my menu. But once i click the menu i can still see the link of my menu at the status bar. Is there a way that once i click my menu the link in the status bar is not visible.
Edwin