View Single Post
Old
  (#2 (permalink))
RS Tom is Offline
Revenue Source Admin
RS Tom is almost famous!RS Tom is almost famous!RS Tom is almost famous!RS Tom is almost famous!
 
RS Tom's Avatar
 
Join Date: Sep 2004
Posts: 2,406
Tom A.
Jack of All Trades
Revenue Source, Inc.
Ft. Lauderdale, FL United States
   
Re: How to Disable Status Bar Messages - 01-30-2007

Here's some code that should be compatible with virtually all browsers. If you want a non-blank value to display, just change the window.status to a string value. I recommend something like window.status = 'Click here to visit this link...';

Code:
<script type="text/javascript">
<!--
function mv(){
 window.status='';
 return true;
}
if(document.all){
 document.onmouseover=mv;
}
else if(document.layers){
 window.captureEvents(Event.MOUSEOVER);
 window.onmouseover=mv;
}
//-->
</script>
  
Reply With Quote
Revenue Sharing Ads