Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

disable status bar or mouse over function

Status
Not open for further replies.

fairfaxVB

Programmer
Nov 3, 2005
46
US
Hi Friends,

Could we disable status bar on left buttom on borrow window by javascript?

My client does like to display URL information of item/pages on the status bar because we use index as home pages.

Users are still see page url by mouse over link item.
Any ideal? thanks for help.

FairfaxVB
 
You could detect onmouseover events and use window.status to blank out the status bar.

Not sure if this is an IE only type solution or not.

Someone else may have a better solution.



Paranoid? ME?? WHO WANTS TO KNOW????
 
This works:
<a href="mylink.html" onmouseover="window.status = 'click here'; return true;" onmouseout="window.status = '';">click here</a>

Or you setup an event handler for onmouseover and onmouseout so it applies to the whole page rather than setting it up in each anchor.
Of course if you use mouse events for other things on the page you would have to compensate for them.


Paranoid? ME?? WHO WANTS TO KNOW????
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top