Input Radio type Property
Example
Find out which type of form element the radio button is:
var x = document.getElementById("myRadio").type;
Try it Yourself »
Description
The type property returns which type of form element a radio button is.
For a radio button object, this property will always return "radio".
Browser Support
Property | |||||
---|---|---|---|---|---|
type | Yes | Yes | Yes | Yes | Yes |
Syntax
radioObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the radio button is |
❮ Input Radio Object