Input DatetimeLocal disabled Property
Example
Disable a local datetime field:
document.getElementById("myLocalDate").disabled = true;
Try it Yourself »
Definition and Usage
The disabled property sets or returns whether a local datetime 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="datetime-local"> element does not show any datetime field/calendar in Firefox.
Syntax
Return the disabled property:
datetimelocalObject.disabled
Set the disabled property:
datetimelocalObject.disabled = true|false
Property Values
Value | Description |
---|---|
true|false |
Specifies whether a local datetime field should be disabled, or not
|
Technical Details
Return Value: | A Boolean, returns true if the local datetime field is disabled, otherwise it returns false |
---|
More Examples
Example
Find out if a local datetime field is disabled or not:
var x = document.getElementById("myLocalDate").disabled;
Try it Yourself »
Example
Disable and undisable a local datetime field:
function disableBtn() {
document.getElementById("myLocalDate").disabled = true;
}
function undisableBtn() {
document.getElementById("myLocalDate").disabled = false;
}
Try it Yourself »
Related Pages
HTML reference: HTML <input> disabled attribute
❮ Input DatetimeLocal Object