The Input Datetime disabled property is used to set or return whether a datetime field should be disabled, or not. An element becomes unusable and un-clickable if it is disabled. Such elements are generally rendered in gray by browsers.
The HTML disable attribute is reflected by the Datetime disabled property.
Syntax:
Returning the disabled property:
datetimeObject.disabled
Setting the disabled property:
datetimeObject.disabled = true|false
Property Value:
- true|false: It is used to specify whether a datetime field should be disabled or not. It is false by default.
Return values: It returns a Boolean values which specify that the datetime field is disabled or not.
Below program illustrates the Datetime disabled property :
Example: Disabling a datetime field.
HTML
<!DOCTYPE html>
< html >
< head >
< title >Input Datetime disabled Property in HTML</ title >
< style >
h1 {
color: green;
}
h2 {
font-family: Impact;
}
body {
text-align: center;
}
</ style >
</ head >
< body >
< h1 >GeeksforGeeks</ h1 >
< h2 > Input Datetime disabled Property </ h2 >
< br >
< input type = "datetime"
id = "test_Datetime" >
< p >To disable the datetime field,
double click the "Disable" button.</ p >
< button ondblclick = "My_Datetime()" >
Disable
</ button >
< script >
function My_Datetime() {
// Set Input Datetime disabled Property
document.getElementById(
"test_Datetime").disabled = true;
}
</ script >
</ body >
</ html >
|
Output:
Initially:

Before clicking the disable button:

After clicking the disable button:

Note: The <input type=”datetime”> element does not show any datetime field/calendar in any major browsers, except Safari.
Supported Browsers:
- Apple Safari
- Internet Explorer
- Firefox
- Google Chrome
- Opera
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
15 Sep, 2022
Like Article
Save Article