HTML | DOM Input URL maxLength Property Last Updated : 21 Jul, 2022 Comments Improve Suggest changes Like Article Like Report 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 Input url maxLength property. urlObject.maxLength It is used to set the Input url maxLength property. urlObject.maxLength = number Property Values: It contains a single value number which is used to specify the maximum number of characters that are allowed in the search maxlength Field. Return Value: It returns a numeric value which represents the maximum number of character that has been allowed in the URL maxlength field. Example-1: This example illustrates how to return the Input URL maxLength property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL maxLength Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL maxLength 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://" maxlength="20"> <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").maxLength; 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 maxLength Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL maxLength 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://" maxlength="20"> <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").maxLength = "40"; document.getElementById( "GFG").innerHTML = "The value of the maxLength"+ " attribute was changed to " + link; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browser supported by DOM input URL maxLength property are listed below: Google Chrome Internet Explorer 10.0 + Firefox Opera Safari Comment More infoAdvertise with us Next Article HTML | DOM Input URL maxLength Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input URL minLength Property 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 2 min read HTML | DOM Input Text maxLength Property The DOM Input Text maxLength Property in HTML DOM is used to set or return the value of maxlength attribute of a Text Input Field. It specifies the maximum number of characters that have been allowed in the text field. The default value of Input Text maxLength property is 524288. Syntax: It returns 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 Email maxLength Property The Input Email maxLength property in HTML DOM is used to set or return the value of maxlength attribute of a Email Input Field. It specifies the maximum number of characters that have been allowed in the email field. The default value of Input Email maxLength property is 524288. Syntax: It returns 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 Like