HTML | DOM Input Password size Property Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The DOM Input Password size Property is used to set or return the value of the size attribute of an Input Password Field. The size attribute is used to define the width of an Input Password field. Its default value is 20. Syntax: It is used to return the size property.passwordObject.sizeIt is used to set the size property.passwordObject.size = number Property Values: It contains single value number which is used to specify the width of a Password field in terms of the number of characters. Return Value: It returns the numeric value which represents the width of a Password field in terms of number of characters. Example 1: This example illustrates how to return Input Password size property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Password size Property</h2> <form id="myGeeks"> Password: <input type="password" id="myPsw" size="30"> </form> <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="color:green;font-size:25px;"></p> <script> // Return Input Password size Property function myFunction() { var x = document.getElementById( "myPsw").size; document.getElementById( "demo").innerHTML = x; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button : Example-2: This example illustrates that how to set the property. HTML <!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Password size Property</h2> <form id="myGeeks"> Password: <input type="password" id="myPsw" size="30"> </form> <br><br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="color:green;font-size:22px;"></p> <script> // set Input Password size Property function myFunction() { var x = document.getElementById( "myPsw").size = "50"; document.getElementById( "demo").innerHTML = "The value of the size attribute was changed to: " + x; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Supported Browsers: The browser supported by DOM input Password size Property are listed below: Google Chrome 1+Edge 12+Firefox 1+Opera 2+Safari 1+ Comment More infoAdvertise with us Next Article HTML | DOM Input Password size Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Password type Property The DOM Input Password type Property is used for returning which type of form element a password field is. This property will always return" password" for an input password field. Syntax: passwordObject.type Return Value: It returns a string value which represent the type of form element the passwor 1 min read HTML | DOM Input Password value Property The DOM Input Password value Property is used to set or return the value of the value attribute of a Password Field. The Value attribute specifies the initial value of the input Password Field. The value may be a single address or a list of address. Syntax: It is used to return the value property.pa 2 min read HTML | DOM Input Password required Property The DOM Input Password required Property is used to set or return whether Input Password Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. Syntax: It is used to return the required property.passwordObject.requiredIt is used to set t 2 min read HTML | DOM Input Password readOnly Property The DOM Input Password readOnly Property is used to set or return whether a Password Field should be read-only or not. It means that a user can not modify or changes the content already present in a particular Element (However, a user can tab to it, highlight it, and copy the text from it) whereas a 2 min read HTML | DOM Input Password form Property The DOM Input Password form Property is used for returning the reference of the form containing the input Password field. It is a read-only property that returns a form object on success. Syntax: passwordObject.form Return Values: It returns a string value which specify the reference of the form con 1 min read HTML | DOM Input Password name Property The DOM Input Password name Property is used to set or return the value of the name attribute of a Password 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 is used to 2 min read HTML | DOM Input Password pattern Property The Input password pattern Property in HTML DOM is used to set or return the value of pattern attribute of a Password Field. This attribute is used to specify the regular expression on which the input elements value is checked against. Use the Global title attribute to describe the pattern for helpi 2 min read HTML | DOM Input Password disabled Property The DOM Input Password disabled Property is used to set or return the whether the Input Password Field must be disabled or not. A disabled Password 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 d 2 min read HTML DOM Input Password minLength Property The HTML DOM Input Password minLength Property is used to set or return the value of a minLength attribute of a password field. It specifies the minimum number of characters that have been allowed in the element. Syntax: It is used to return the minLength property.passwordObject.minLengthIt is used 2 min read HTML | DOM Input Password maxLength Property The DOM Input Password maxLength Property is used to set or return the value of a maxLength attribute of a password field. It specifies the maximum number of characters that have been allowed in the element. Syntax: It is used to return the maxLength property.passwordObject.maxLengthIt is used to se 2 min read Like