The web accessibility makes web content and web applications more accessible for people with disabilities. It especially helps in dynamic content change and development of advanced user interface controls with AJAX, HTML, JavaScript, and related technologies.
The menu provides a built-in compliance with WAI-ARIA specifications. The WAI-ARIA support is achieved using the attributes such as aria-orientation, aria-label, aria-expanded, aria-disabled, and aria-haspopup applied for menu item in
menu. It helps the people with disabilities by providing information about the widget for assistive technology in the screen readers. The menu component contains the menubar, menu, and menuItem roles.
Properties
Functionality
menubar
This role will be specified for root menu.
menu
This role will be specified for an item that have sub menu.
menuitem
This role will be specified for an item that do not have sub menus.
aria-haspopup
Indicates the availability and type of interactive popup element.
aria-expanded
Indicates whether the subtree can be expanded or collapsed, and indicates whether its current state can be expanded or collapsed.
aria-orientation
Indicates whether the orientation is horizontal or vertical. The default orientation is horizontal.
aria-label
Indicates the menu item text.
aria-disabled
Indicates the state of menu item whether it is disabled.
User interaction with keyboard
Keyboard shortcuts
Actions
Esc
Closes the sub menu that contains focus and returns focus to the parent element.
Enter
Opens the sub menu if focused menu item has sub menu, and places focus on its first item or activates the item and closes the sub menu.
Up
Navigates up or to the previous menu item.
Down
Navigates down or to the next menu item.
Left
Closes the current sub menu and navigates to the parent menu.