HTML | DOM Input URL disabled Property Last Updated : 26 Aug, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The DOM Input URL disabled Property is used to set or return whether the Input URL Field must be disabled or not. A disabled URL 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. It returns the disabled property. urlObject.disabledIt is used to set the disabled property. urlObject.disabled = true|false Property Values: true: It defines that the Input URL field is disabled.False: It has a default value. It defines that the Input URL Field is not disabled. Return Value: It returns a boolean value which represents that the Input URL Field is disabled or not.Example-1: This Example illustrates how to return the Property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL disabled Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL Disabled Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" pattern="https?://.+" title="Include http://" maxlength="20" disabled> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </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 URL disabled Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL Disabled Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" pattern="https?://.+" title="Include http://" maxlength="20" disabled> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </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 URL disabled property are listed below: Google Chrome 1Edge 12FirefoxOpera 11Safari Comment More infoAdvertise with us Next Article HTML | DOM Input Search disabled Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input Tel disabled Property The DOM input tel disabled Property is used to set or return whether the input tel field must be disabled or not. A disabled tel field is un-clickable and unusable. It is a boolean attribute that reflects the disabled attribute. It is usually rendered in grey color by default in all the browsers. S 2 min read HTML | DOM Input Range disabled Property The DOM Input Range disabled Property is used to set or return whether the Input range Field must be disabled or not. A disabled range 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 2 min read HTML | DOM Input Search disabled Property The DOM Input Search disabled Property in HTML DOM is used to return a boolean value that represents that a search field should be disabled or not. Disabled elements are shown in gray by default and are unusable and un-clickable. Syntax: It returns the disabled property.searchObject.disabledIt is us 2 min read HTML | DOM Input Text disabled Property The DOM Input Text disabled Property is used to set or return the whether the Input Text Field must be disabled or not. A disabled Text 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 al 2 min read HTML | DOM Input Time disabled Property 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 defau 2 min read HTML | DOM Input Week disabled Property The DOM Input Week disabled property in HTML DOM is used to return a boolean value that represents that a week field should be disabled or not. Disabled elements are shown in gray by default and are unusable and un-clickable. Syntax: It returns the disabled property.weekObject.disabledIt is used to 2 min read Like