THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Email disabled Property

Input Email Object Reference Input Email Object

Example

Disable an email field:

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

The result will be:

Try it Yourself »

Definition and Usage

The disabled property sets or returns whether an email field 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 10.0 Yes Yes Yes

Syntax

Return the disabled property:

emailObject.disabled

Set the disabled property:

emailObject.disabled=true|false

Property Values

Value Description
true|false Specifies whether an email field should be disabled, or not
  • true - The email field is disabled
  • false - Default. The email field is not disabled

Technical Details

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

More Examples

Example

Find out if an email field is disabled or not:

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

The result of x will be:

true
Try it Yourself »

Example

Disable and undisable an email field:

function disableBtn() {
    document.getElementById("myEmail").disabled = true;
}

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

Related Pages

HTML reference: HTML <input> disabled attribute


Input Email Object Reference Input Email Object