HTML <menuitem> radiogroup Attribute
Example
A <menuitem> element that belongs to a radiogroup:
    <menu>
 <menuitem type="radio" label="Left" radiogroup="alignment" onclick="setAlign('left')">Left</menuitem>
 </menu>
Definition and Usage
The radiogroup attribute specifies the name of the group of command that will be toggled when the command/menu item itself is activated/toggled.
Note: This attribute can only be used if type="radio".
Browser Support
The numbers in the table specify the first browser version that fully supports the attribute.
| Attribute | |||||
|---|---|---|---|---|---|
| radiogroup | Not supported | Not supported | Not supported | Not supported | Not supported | 
Syntax
  <menuitem radiogroup="groupname">
Attribute Values
| Value | Description | 
|---|---|
| groupname | Specifies the name of the group of command that will be toggled when the command itself is activated/toggled (only for type="radio") | 
❮ HTML <menuitem> tag
 
 
