FREE tutorial,solution,RSS Feeds on Operating Systems, Programming, Web Development, Applications, Databases, Networking, Hardware, Security, SEO Free Expertsforge Membership
Become a Moderator
Submit Article to Expertsforge.com Submit Article My Expertsforge
 
RSS Feeds, Help Help RSS Feeds
bannertop
div
 

JavaScript Tutorial: Hide Status Bar Message in the Internet Browser using Javascript

by: jawahar, 1/21/2008 11:53:06 AM, Views: 1087
 
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>
Next Steps:
Add this Tutorial to:
Rating Booth
Not Yet Rated!
Rate:
Signup / Login To View the Solution or Provide Comments
Post Comment/Solution
Comment:*
     
  Use : [bold] for <b>; [/bold] for </b>; [italic] for <i>; [/italic] for </i>; [code] & [/code] for code
 
Categories
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
arrow
sep
Get Rid of Spyware with Anti Spyware Software
Options
»  Submit a Tutorial
» Ask a Question
» Add to KB
» View all your Q's
JavaScript RSS Feed
Most Popular Tutorial
1.InStr in JavaScript
2.Mid() function in Ja...
3.Capturing Mouse Posi...
4.Setting IFRAME heigh...
5.Dynamically create/a...
6.Creating floating me...
7.View Clipboard conte...
8.Validating a text bo...
9.Dynamically changing...
10.Javascript Input Box...
Most Popular Solution
1.How to reload a fram...
Top Rated
1.InStr in JavaScript
2.Mid() function in Ja...
3.Dynamically create/a...
4.Opening a New window...
5.Capturing Mouse Posi...
6.Creating floating me...
7.Dynamically changing...
8.View Clipboard conte...
9.How to reload a fram...
Top Rankers
Overall
sep
1. jawahar1400
sep

Yearly - 2008
sep
1. jawahar200
sep
Expertsforge Sponsors
1. Tech News
2. Wii Reviews
bnrtop