HTML DOM Input URL minLength Property Last Updated : 21 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The Input URL minLength Property in HTML DOM is used to set or return the value of the minlength attribute of a URL Input Field. It specifies the minimum number of characters that have been allowed in the URL field. Syntax: It returns the Input url minLength property.urlObject.minLengthIt is used to set the Input url minLength property.urlObject.minLength = number Property Values: It contains a single value number which is used to specify the minimum number of characters that are allowed in the URL minlength Field. Return Value: It returns a numeric value that represents the minimum number of characters that have been allowed in the URL minlength field. Example 1: This example illustrates how to return the Input URL minLength property. HTML <!DOCTYPE html> <html> <head> <title> DOM Input URL minLength Property </title> </head> <body> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL minLength Property </h2> <label for="uname" style="color:green"> <b>Enter URL</b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" pattern="https?://.+" title="Include http://" minlength="20"> <br><br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { let link = document.getElementById( "gfg").minLength; document.getElementById( "GFG").innerHTML = link; } </script> </body> </html> Output: Example 2: This example illustrates how to set the Input URL minLength property. HTML <!DOCTYPE html> <html> <head> <title> DOM Input URL minLength Property </title> </head> <body> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL minLength Property </h2> <label for="uname" style="color:green"> <b>Enter URL</b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" pattern="https?://.+" title="Include http://" minlength="20"> <br><br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { let link = document.getElementById( "gfg").minLength = "9"; document.getElementById("GFG").innerHTML = "The value of the minlength " + "attribute set to " + link; } </script> </body> </html> Output: Supported Browsers: The browsers supported by DOM Input URL minLength Property are listed below: Google ChromeInternet ExplorerFirefoxApple SafariOpera Comment More infoAdvertise with us Next Article HTML DOM Input URL minLength Property M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML Web technologies HTML-DOM Similar Reads HTML | DOM Input URL maxLength Property The DOM Input URL maxLength Property in HTML DOM is used to set or return the value of maxlength attribute of a URL Input Field. It specifies the maximum number of characters that have been allowed in the URL field. The default value of Input URL maxLength property is 524288. Syntax: It returns the 2 min read HTML DOM Input URL list Property The input URL list property in HTML DOM is used to return a reference to the datalist element that contains an input URL field. Syntax: urlObject.list.id Return Value: It returns a string value that represents the value of the id attribute of the datalist element. Example: Below HTML code is used to 1 min read HTML | DOM Input URL name Property The DOM Input URL name Property in HTML DOM is used to set or return the value of name attribute of a URL field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns the 2 min read HTML | DOM Input Search maxLength Property The DOM Input Search maxLength Property in HTML DOM is used to set or return the value of maxlength attribute of a search Input Field. It specifies the maximum number of characters that have been allowed in the search field. The default value of Input search maxLength property is 524288. Syntax: It 2 min read HTML | DOM Input Month min Property The DOM Input Month min property in HTML DOM is used to set or return the value of the min attribute of a Month field. The min attribute specifies the minimum value of Month and year for a Month field. Syntax: It returns the min property.monthObject.minIt is used to set the min property.monthObject. 2 min read Like