HTML DOM Input Reset disabled Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Reset disabled Property

❮ Input Reset Object

Example

Disable a Reset button:

document.getElementById("myReset").disabled = true;
Try it Yourself »

Definition and Usage

The disabled property sets or returns whether a reset button 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:

resetObject.disabled

Set the disabled property:

resetObject.disabled = true|false

Property Values

Value Description
true|false Specifies whether a reset button should be disabled or not
  • true - The reset button is disabled
  • false - Default. The reset button is not disabled


Technical Details

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

More Examples

Example

Find out if a Reset button is disabled or not:

var x = document.getElementById("myReset").disabled;
Try it Yourself »

Example

Disable and un-disable a reset button:

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

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

Related Pages

HTML reference: HTML <input> disabled attribute


❮ Input Reset Object