Tutorials References Menu

HTML <menuitem> type Attribute

❮ 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

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