HTML <command> type Attribute
Example
A <command> element of type "command":
<menu>
<command type="command" label="Save" onclick="save()">Save</command>
</menu>
Try it Yourself »
Browser Support
Attribute | |||||
---|---|---|---|---|---|
type | Not supported | Not supported | Not supported | Not supported | Not supported |
Note: Internet Explorer 9 (not earlier or later versions), supports the type attribute. However it only supports the "command" type.
Definition and Usage
The type attribute specifies the type of command.
Syntax
<command type="command|checkbox|radio">
Attribute Values
Value | Description |
---|---|
command | Default. Specifies a normal command with an action |
checkbox | Specifies a command that can be toggled using a checkbox |
radio | Specifies a command that can be toggled using a radio button |
❮ HTML <command> tag