Window.statusbar (Property)

A reference to an object that represents the status bar.

Availability:

JavaScript - 1.2
Netscape - 4.0
Property/method value type:Bar object
JavaScript syntax:-myWindow.statusbar
-statusbar

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.

Warnings:

Example code:

   // 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');

See also:Bar object, Frame object, UniversalBrowserWrite, Window furniture, Window object, Window.locationbar, Window.menubar, Window.personalbar, Window.scrollbars, Window.toolbar

Property attributes:

ReadOnly.

insert figure 0065