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

Input Submit disabled Property

❮ Input Submit Object

Example

Disable a Submit button:

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

Definition and Usage

The disabled property sets or returns whether a submit 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.


Browser Support

Property
disabled Yes Yes Yes Yes Yes

Syntax

Return the disabled property:

submitObject.disabled

Set the disabled property:

submitObject.disabled = true|false

Property Values

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


Technical Details

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

More Examples

Example

Find out if a Submit button is disabled or not:

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

Related Pages

HTML reference: HTML <input> disabled attribute


❮ Input Submit Object