Window.menubar (Property)

A reference to an object that represents the menu bar.

Availability:

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

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, it is supposed to control the visibility of the menu bar.

The example shows how this can be done in a secure way that requires privilege to be granted and in a non-secure way that does not.

Warnings:

Example code:

   // Request necessary privileges

   netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserWrite");

   // Hide menu bar

   window.menubar.visible = false;

   // There is another way that works without requesting privilege

   window.open('', '_top', 'menubar=0');

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

Property attributes:

ReadOnly.

insert figure 0062