HTML DOM Input Radio type Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Radio type Property

❮ Input Radio Object

Example

Find out which type of form element the radio button is:

var x = document.getElementById("myRadio").type;
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

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