HTML menuitem disabled Attribute
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <menuitem> disabled Attribute

❮ HTML <menuitem> tag

Example

A disabled <menuitem> element:

<menu type="context" id="mymenu">
  <menuitem label="Refresh" icon="ico_reload.png" disabled></menuitem>
  <menuitem label="Twitter" icon="ico_twitter.png"></menuitem>
  <menuitem label="Facebook" icon="ico_facebook.png"></menuitem>
</menu>
Try it Yourself »

Definition and Usage

The disabled attribute is a boolean attribute.

When present, it specifies that the <menuitem> element should be disabled.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
disabled Not supported Not supported 8.0 Not supported Not supported

Differences Between HTML 4.01 and HTML5

The <menuitem> tag is new in HTML5.


Differences Between HTML and XHTML

In XHTML, attribute minimization is forbidden, and the disabled attribute must be defined as <menuitem disabled="disabled">.


Syntax

<menuitem disabled>

❮ HTML <menuitem> tag