HTML: The Markup Language

command type=radioselection of one item from a list of items NEW # T

The command element with a type attribute whose value is "radio" represents a selection of one item from a list of items.

Permitted content #

empty (void element)

Permitted attributes #

Descriptions for attributes specific to this element #

type = "radio"
Specifies that its command element represents a selection of one item from a list of items.
radiogroup = string
The name of the group of commands that will be toggled when the command itself is toggled.
checked = "checked" or "" (empty string) or empty
Specifies that the command is selected.
label = string
The name of the command, as shown to the user.
icon = URI
A URL for an image that represents the command.
disabled = "disabled" or "" (empty string) or empty
Specifies that the command is not currently available.

Tag omission #

The command element is a void element. A command element must have a start tag but must not have an end tag.

Permitted parent elements #

any element that can contain metadata elements, any element that can contain phrasing elements

DOM interface #

interface HTMLCommandElement : HTMLElement {
           attribute DOMString type;
           attribute DOMString label;
           attribute DOMString icon;
           attribute boolean disabled;
           attribute boolean checked;
           attribute DOMString radiogroup;
};