THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Radio type Property

Input Radio Object Reference Input Radio Object

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

Internet Explorer Firefox Opera Google Chrome Safari

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 Reference Input Radio Object