The below code can be used to hide status bar message that appears in the internet browser, when the mouse is moved over any link.
Code 1: Hide Status Bar Message of a specific link in a web page<html>
<head>
<title>Untitled Document</title>
<script language="javascript" type="text/javascript">
var statusbar_message=""
function fn_hidemessage()
{
window.status=statusbar_message
return true
}
</script>
</head>
<body>
<a href="http://www.expertsforge.com" onMouseover="return fn_hidemessage()">Hide Status Bar Message</a>
</body>
</html>
Code 2: Hide Status Bar Message of all links in a web page<html>
<head>
<title>Untitled Document</title>
<script language="javascript" type="text/javascript">
var statusbar_message=""
function fn_hidemessage()
{
window.status=statusbar_message
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=fn_hidemessage
document.onmouseout=fn_hidemessage
</script>
</head>
<body>
<a href="http://www.expertsforge.com">Hide Status Bar Message</a>
</body>
</html>