Select name Property
Example
Return the value of the name attribute of a drop-down list:
var x = document.getElementById("mySelect").name;
Try it Yourself »
Description
The name property sets or returns the value of the name attribute of a drop-down list.
The name attribute is used to identify form data after it has been submitted to the server, or to reference form data using JavaScript on the client side.
Browser Support
Property | |||||
---|---|---|---|---|---|
name | Yes | Yes | Yes | Yes | Yes |
Syntax
Return the name property:
selectObject.name
Set the name property:
selectObject.name = name
Property Values
Value | Description |
---|---|
name | Specifies the name of the drop-down list |
Technical Details
Return Value: | A String, representing the name of the drop-down list |
---|
More Examples
Example
Change the value of the name attribute of a drop-down list:
document.getElementById("mySelect").name = "newName";
Try it Yourself »
Related Pages
HTML reference: HTML <select> name attribute
❮ Select Object