Hide Status Bar Message
Example
Try it (Look at the status bar while moving over these links):Home - Code - Learn
Code
Put this in the head part of the document
<script language="JavaScript">
<!--
function hideStatusBar(){
window.status=''
return true
}
if (document.layers) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
}
document.onmouseover=hideStatusBar
document.onmouseout=hideStatusBar
//-->
</script>
