This is a read-only property containing a reference to a Bar object whose visible property contains a Boolean value that controls the visibility of the screen furniture represented by the object, in this case, the status bar.
Your script will need to be granted the UniversalBrowserWrite privilege to allow it to change the visibility of the status bar.
// Request necessary privileges netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite"); // Hide status bar window.statusbar.visible = false; // There is another way that works without requesting privilege window.open('', '_top', 'status=0');
Prev | Home | Next |
Window.status | Up | Window.stop() |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |