Input Checkbox type Property

❮ Input Checkbox Object

Example

Find out which type of form element the checkbox is:

var x = document.getElementById("myCheck").type;
Try it Yourself »

Description

The type property returns which type of form element the checkbox is.

For a checkbox this property will always return "checkbox".


Browser Support

Property
type Yes Yes Yes Yes Yes

Syntax

checkboxObject.type

Return Value

Type Description
String The type of form element the checkbox is

❮ Input Checkbox Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.