Input Radio type Property
Example
Find out which type of form element the radio button is:
var x = document.getElementById("myRadio").type;
The result of x will be:
radio
Try it Yourself »
Definition and Usage
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
The type property is supported in all major browsers.
Syntax
radioObject.type
Return Value
Type | Description |
---|---|
String | The type of form element the radio button is |
Input Radio Object