Open In App

HTML | DOM Input Time disabled Property

Last Updated : 18 Oct, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Time disabled Property in HTML DOM is used to set or return whether the Input Time Field must be disabled or not. A disabled Time Field is un-clickable and unusable. It is a boolean attribute and used to reflect the HTML Disabled attribute. It is usually rendered in grey color by default in all the Browsers. 

Syntax: 

  • It returns the disabled property.
timeObject.disabled
  • It is used to set the disabled property.
timeObject.disabled = true|false

Property Values: 

  • true: It defines that the Input Time field is disabled.
  • False: It has a default value. It defines that the Input Time Field is not disabled.

Return Value: It returns a boolean value which represents that the Input Time Field is disabled or not. 

Example-1: This Example illustrates how to return the Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time disabled Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
        <h2>
              DOM Input Time disabled Property
          </h2>
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               min="16:00"
               max="22:00"
               disabled>
        <br><br>
 
        <button type="button"
                onclick="geeks()">
            Click
        </button>
        <p id="GFG"
           style="font-size:24px;
                  color:green'">
          </p>
 
        <script>
            function geeks() {
               
                var link =
                   document.getElementById(
                     "gfg").disabled;
               
                document.getElementById(
                  "GFG").innerHTML = link;
            }
        </script>
    </center>
</body>
 
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

Example-2: This Example illustrates how to set the Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time disabled Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
        <h2>
          DOM Input Time disabled Property
          </h2>
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               min="16:00"
               max="22:00"
               disabled>
        <br><br>
 
        <button type="button"
                onclick="geeks()">
            Click
        </button>
        <p id="GFG"
           style="font-size:24px;
                  color:green'">
          </p>
 
        <script>
            function geeks() {
               
                var link =
                    document.getElementById(
                      "gfg").disabled = false;
               
                document.getElementById(
                  "GFG").innerHTML = link;
            }
        </script>
    </center>
</body>
 
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

Supported Browsers: The browser supported by DOM input Time disabled property listed below:

  • Google Chrome
  • Internet Explorer 10.0 +
  • Firefox
  • Opera
  • Safari


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads