Input Password name Attribute
Definition and Usage
name
Sets or returns the value of the name attribute of the password field.
The HTML name attribute is used to identify form data after submitting form data to the server, or to reference form data on the client using JavaScript.
Note:Only form elements with a name attribute will pass their values when submitting a form.
See also:
HTML Reference Manual:HTML <input> name Attribute
Instance
Example 1
Get the name of the password field:
var x = document.getElementById("myPsw").name;
Example 2
Change the name of the password field:
document.getElementById("myPsw").name = "newPasswordName";
Syntax
Return name attribute:
passwordObject.name
Set name attribute:
passwordObject.name = name
Attribute Value
Value | Description |
---|---|
name | Specifies the name of the password field. |
Technical Details
Return Value: | A string value representing the name of the password field. |
---|
Browser Support
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
Support | Support | Support | Support | Support |