Computer >> Computer tutorials >  >> Programming >> HTML

Create a command/menu item that the user can invoke from a popup menu in HTML5


Use the <menuitem> tag to create a command/ menu item that the user can invoke from a popup menu in HTML5. The HTML <menuitem> tag is used for defining a menu item for a menu.

The following are the attributes of the <menuitem> tag −

Attribute
Value
Description
  checked Create a command/menu item that the user can invoke from a popup menu in HTML5 checked
 defines that a menuitem should be   checked
 default Create a command/menu item that the user can invoke from a popup menu in HTML5 default
 a menuitem is marked as a default   command
 disabled Create a command/menu item that the user can invoke from a popup menu in HTML5 disabled
 disables a menuitem and cannot be clicked
 icon Create a command/menu item that the user can invoke from a popup menu in HTML5 url
 defines an icon for a menuitem
 label Create a command/menu item that the user can invoke from a popup menu in HTML5 text
 defines a name for a menuitem which is displayed to the user
 radiogroup Create a command/menu item that the user can invoke from a popup menu in HTML5 groupname
 defines a group of commands out of which only one can be selected
type Create a command/menu item that the user can invoke from a popup menu in HTML5 checkbox  
 command
 radio
 defines type of command for a menuitem default is command

Example

You can try to run the following code to implement <menuitem> tag in HTML5 −

<!Doctype html>
<html>
   <head>
      <title>HTML menuitem Tag</title>
   </head>
   <body>
      <div style = "border:1px solid #000; padding:20px;" contextmenu = "clickmenu">
         <p>Right click inside here....</p>
         <menu type = "context" id = "clickmenu">
            <menuitem label = "Tutorialspoint" onclick = ""></menuitem>
            <menuitem label = "Tutorials Library" onclick = ""></menuitem>
            <menuitem label = "Coding Ground" onclick = ""></menuitem>
            <menuitem label = "Q/A" onclick = ""></menuitem>
         </menu>
      </div>
   </body>
</html>