THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML <menuitem> type Attribute

HTML menuitem Tag Reference HTML <menuitem> tag

Example

A <menuitem> element of type "command":

<menu>
<menuitem type="command" label="Save" onclick="save()">Save</menuitem>
</menu>

Definition and Usage

The type attribute specifies the type of command/menu item.


Browser Support

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

Attribute
type Not supported Not supported Not supported Not supported Not supported

Differences Between HTML 4.01 and HTML5

The <menuitem> tag is new in HTML5.


Syntax

<menuitem type="command|checkbox|radio">

Attribute Values

Value Description
command Default. Specifies a normal command with an action
checkbox Specifies a command that can be toggled using a checkbox
radio Specifies a command that can be toggled using a radio button

HTML menuitem Tag Reference HTML <menuitem> tag