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 »

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
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.