HTML | DOM Input URL required Property Last Updated : 26 Aug, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The DOM Input URL required Property in HTML DOM is used to set or return whether Input url Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute.Syntax: It returns the Input url required property. urlObject.requiredIt is used to set the Input url required property. urlObject.required = true|false Property Values: true: It specifies that the url field must be filled out before submitting the form.false: It is the default value. It specifies that the url field must not be filled out before submitting the form. Return Value: It returns a Boolean value which represents that the URL Field must be filled or not before submitting the form.Example-1: This example illustrates how to return Input url required property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL required Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL required Property </h2> <label for="uname" style="color:green"> <b>Enter URL</b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" required> <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").required; document.getElementById( "GFG").innerHTML = link; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking Button: Example-2: This Example illustrates how to set the Input url required Property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL required Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL required Property </h2> <label for="uname" style="color:green"> <b>Enter URL</b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" required> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { // Set URL required property. var link = document.getElementById( "gfg").required = "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 required Property are listed below: Google Chrome 1Edge 12FirefoxOpera 11Safari Comment More infoAdvertise with us Next Article HTML DOM Input Search required Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input Tel required Property The DOM input tel required property in HTML DOM is used to set or return whether the input tel field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It returns the input tel required property. telObject.requiredIt is used to set 1 min read HTML DOM Input Search required Property The Input Search required Property in HTML DOM is used to set or return whether the Input search Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It returns the Input search required property.searchObject.requiredIt is us 2 min read HTML | DOM Input Text required Property The Input Text required Property in HTML DOM is used to set or return whether Input Text Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It returns the Input text required property.textObject.requiredIt is used to set the 2 min read HTML | DOM Input Time required Property The DOM Input Time required Property in HTML DOM is used to set or return whether Input Time Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It returns the Input Time required property.timeObject.requiredIt is used to set 2 min read HTML | DOM Input Week required Property The Input Week required Property in HTML DOM is used to set or return whether Input Week Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It returns the Input Week required property.weekObject.requiredIt is used to set the 2 min read HTML | DOM Input Date required Property The Input Date required property is used for setting or returning whether a date field must be filled out before submitting a form. The HTML required attribute is used to reflect the Input Date required property.Syntax: For returning the required property: dateObject.requiredFor setting the required 2 min read Like