menuitem
Definition and Usage
The <menuitem> tag defines a command/menu item that the user can invoke from a popup menu. This includes context menus, as well as menus that might be attached to a menu button. The<menuitem>
element defines a list (or menuitem) of commands that a user can perform.
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.
<menu type="popup">
<menuitem label="" onclick="">
<menuitem label="" onclick="">
<menuitem label="" onclick="">
</menu>