HTML <menuitem> Tag
This tag has now been removed from the HTML5 specification. Rather than remove this article altogether, I have decided to keep it here for reference.
The HTML <menuitem>
tag represents a command that the user can invoke from a popup menu (either a context menu or the menu of a menu button).
You can use one or more type
, label
, icon
, disabled
, checked
, and radiogroup
attributes to set a new command. Otherwise you can use the command
attribute to reference another command. This way, you can define a command once, set its state (e.g. whether it is active or disabled) in one place, and have all references to that command in the user interface change at the same time.
Syntax
The <menuitem>
tag is written as <menuitem>
(no end tag) with its contents inserted between the start and end tags. The tag can have any number of attributes, which are inserted into the start tag.
The <menuitem>
tag must be a child of a <menu>
element whose type
attribute is in the popup menu
state.
Like this:
Example
Context Menu
Here's an example of using the <menuitem>
tag to create a context menu. Right-clicking on the photo will invoke the browser's contextual menu. However, a new option will be added to the browser's contextual menu: "Change Border Color...". The user can then select from the list of colors.
Attributes
Attributes can be added to an HTML element to provide more information about how the element should appear or behave.
The <menuitem>
element accepts the following attributes.
Attribute | Description |
---|---|
type | Specifies the type of command.
Possible values:
|
label | Specifies the name of the command, as shown to the user. |
icon | Specifies the URI (or IRI) of graphical image that represents the action. |
disabled | Specifies if the command is disabled or not.
This is a boolean attribute. If the attribute is present, its value must either be the empty string or a value that is an ASCII case-insensitive match for the attribute's canonical name, with no leading or trailing whitespace (i.e. either Possible values:
|
checked | Indicates whether the command is selected or not. This attribute can only be used when the type attribute is either checkbox or radio .
This is a boolean attribute. If the attribute is present, its value must either be the empty string or a value that is an ASCII case-insensitive match for the attribute's canonical name, with no leading or trailing whitespace (i.e. either Possible values:
|
radiogroup | Specifies the name of the group of commands that will be toggled when the command itself is toggled, for commands whose type attribute has the value "radio". |
default | Specifies that the command is the one that would have been invoked if the user had directly activated the menu's subject instead of using the menu. This is a boolean attribute. If the attribute is present, its value must either be the empty string or a value that is an ASCII case-insensitive match for the attribute's canonical name, with no leading or trailing whitespace (i.e. either Possible values:
|
command | Here's what the W3C HTML5 specification says about the command attribute:
|
Global Attributes
The following attributes are standard across all HTML elements. Therefore, you can use these attributes with the <menuitem>
tag , as well as with all other HTML tags.
accesskey
autocapitalize
class
contenteditable
data-*
dir
draggable
hidden
id
inputmode
is
itemid
itemprop
itemref
itemscope
itemtype
lang
part
slot
spellcheck
style
tabindex
title
translate
For a full explanation of these attributes, see HTML 5 global attributes.
Event Handlers
Event handler content attributes enable you to invoke a script from within your HTML. The script is invoked when a certain "event" occurs. Each event handler content attribute deals with a different event.
onabort
onauxclick
onblur
oncancel
oncanplay
oncanplaythrough
onchange
onclick
onclose
oncontextmenu
oncopy
oncuechange
oncut
ondblclick
ondrag
ondragend
ondragenter
ondragexit
ondragleave
ondragover
ondragstart
ondrop
ondurationchange
onemptied
onended
onerror
onfocus
onformdata
oninput
oninvalid
onkeydown
onkeypress
onkeyup
onlanguagechange
onload
onloadeddata
onloadedmetadata
onloadstart
onmousedown
onmouseenter
onmouseleave
onmousemove
onmouseout
onmouseover
onmouseup
onpaste
onpause
onplay
onplaying
onprogress
onratechange
onreset
onresize
onscroll
onsecuritypolicyviolation
onseeked
onseeking
onselect
onslotchange
onstalled
onsubmit
onsuspend
ontimeupdate
ontoggle
onvolumechange
onwaiting
onwheel
Most event handler content attributes can be used on all HTML elements, but some event handlers have specific rules around when they can be used and which elements they are applicable to.
For more detail, see HTML event handler content attributes.