THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Checkbox disabled Property

Input Checkbox Object Reference Input Checkbox Object

Example

Disable a checkbox:

document.getElementById("myCheck").disabled = true;

The result will be:

Try it Yourself »

Definition and Usage

The disabled property sets or returns whether a checkbox should be disabled, or not.

A disabled element is unusable and un-clickable. Disabled elements are usually rendered in gray by default in browsers.

This property reflects the HTML disabled attribute.


Browser Support

Property
disabled Yes Yes Yes Yes Yes

Syntax

Return the disabled property:

checkboxObject.disabled

Set the disabled property:

checkboxObject.disabled=true|false

Property Values

Value Description
true|false Specifies whether a checkbox should be disabled or not

Possible values:
  • true - The checkbox is disabled
  • false - Default. The checkbox is not disabled

Technical Details

Return Value: A Boolean, returns true if the checkbox is disabled, otherwise it returns false

More Examples

Example

Find out if a checkbox is disabled or not:

var x = document.getElementById("myCheck").disabled;

The result of x will be:

false
Try it Yourself »

Example

Disable and un-disable a checkbox:

function disable() {
    document.getElementById("myCheck").disabled = true;
}

function undisable() {
    document.getElementById("myCheck").disabled = false;
}
Try it Yourself »

Related Pages

HTML reference: HTML <input> disabled attribute


Input Checkbox Object Reference Input Checkbox Object