Link to home
Start Free TrialLog in
Avatar of bark10
bark10

asked on

Disable status bar

I need a way to disable the status bar and keep it from displaying page information.  I have tried several combinations of onmouseovers, onloads, and onclicks in various places in the html source.  Nothing seems to work.  Any help?
ASKER CERTIFIED SOLUTION
Avatar of knightEknight
knightEknight
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of lambda
lambda

<BODY onload="window.defaultStatus='My page'">
<a href="file1" onmouseover="window.status='hello'">hello</a>
<a href="file2"><img src="hello.gif" onmouseover="window.status='image'"></a>
</body>