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

Input Week disabled Property

❮ Input Week Object

Example

Disable a week field:

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

Definition and Usage

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

Note: The <input type="week"> element does not show any date field/calendar in Firefox.


Syntax

Return the disabled property:

weekObject.disabled

Set the disabled property:

weekObject.disabled = true|false

Property Values

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


Technical Details

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

More Examples

Example

Find out if a week field is disabled or not:

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

Example

Disable and undisable a week field:

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

Related Pages

HTML reference: HTML <input> disabled attribute


❮ Input Week Object