THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Reset disabled Property

Input Reset Object Reference Input Reset Object

Example

Disable a Reset button:

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

The result will be:

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

Internet Explorer Firefox Opera Google Chrome Safari

The disabled property is supported in all major browsers.


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;

The result of x will be:

true
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 Reference Input Reset Object