HTML | DOM Input Text maxLength Property Last Updated : 13 Oct, 2022 Comments Improve Suggest changes Like Article Like Report 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 the Input Text maxLength property.textObject.maxLengthIt is used to set the Input text maxLength property.textObject.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 text maxlength Field. Return Value: It returns a numeric value which represents the maximum number of character that has been allowed in the text maxlength field. Example 1: This example illustrates how to return the Input text maxLength property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text maxLength Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text maxLength Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" pattern="[A-Za-z]{3}"> </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to set the maxLength Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").maxLength; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Example-2: This Example illustrates how to set the property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text maxLength Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text maxLength Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" maxlength="60"> </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- script to set the maxLength Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").maxLength; document.getElementById("GFG").innerHTML = "The value of the maxLength attribute was changed to " + txt; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Supported Browsers: The browser supported by DOM input Text maxLength Property are listed below: Google Chrome 1+Edge 12+Firefox 1+OperaSafari 1+ 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 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 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 Time max Property The DOM Input Time max Property in HTML DOM is used to set or return the value of the max attribute for the Time field. The max attribute specify the maximum time value allowed for the Time field. Syntax: It returns the max property.timeObject.maxIt is use to set the max property.timeObject.max = hh 2 min read 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 Week max Property The DOM Input Week max property in HTML DOM is used to set or return the value of the max attribute of a week field. The max attribute specifies the maximum value (week and year) for a week field. Syntax: It returns the max property.weekObject.maxIt is used to set the max property.weekObject.max = Y 2 min read Like