Open In App

HTML | DOM Input Datetime disabled Property

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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


Last Updated : 15 Sep, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads