Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <menuitem> Tag


Example

A context menu with different <menuitem> elements:

<menu type="context" id="mymenu">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png">
  </menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png"
    onclick="window.open('//twitter.com/intent/tweet?text='+window.location.href);">
    </menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png"
    onclick="window.open('//facebook.com/sharer/sharer.php?u='+window.location.href);">
    </menuitem>
  </menu>
  <menuitem label="Email This Page"
  onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
Try it Yourself »

Definition and Usage

The <menuitem> tag is deprecated in HTML5.

The <menuitem> tag defines a command/menu item that the user can invoke from a popup menu.


Browser Support

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

Element
<menuitem> Not supported Not supported 8.0
(for context menus)
Not supported Not supported


Attributes

Attribute Value Description
checked checked Specifies that the command/menu item should be checked when the page loads. Only for type="radio" or type="checkbox"
command    
default default Marks the command/menu item as being a default command
disabled disabled Specifies that the command/menu item should be disabled
icon URL Specifies an icon for the command/menu item
label text Required. Specifies the name of the command/menu item, as shown to the user
radiogroup groupname Specifies the name of the group of commands that will be toggled when the command/menu item itself is toggled. Only for type="radio"
type checkbox
command
radio
Specifies the type of command/menu item. Default is "command"

Global Attributes

The <menuitem> tag also supports the Global Attributes in HTML.


Event Attributes

The <menuitem> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: MenuItem Object


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.