Input Hidden name Attribute

Definition and Usage

name Sets or returns the value of the name attribute of the hidden input field.

The HTML name attribute is used to identify form data submitted to the server, or to reference form data on the client using JavaScript.

Note:Only form elements with the name attribute will pass their values when submitting the form.

See also:

HTML Reference Manual:HTML <input> name Attribute

Instance

Example 1

Get the name of the hidden input field:

var x = document.getElementById("myInput").name;

Try It Yourself

Example 2

Change the name of the hidden input field:

document.getElementById("myInput").name = "newName";

Try It Yourself

Syntax

Return name attribute:

hiddenObject.name

Set name attribute:

hiddenObject.name = name

Attribute Value

Value Description
name Specifies the name of the hidden input field.

Technical Details

Return Value: A string value representing the name of the hidden input field.

Browser Support

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
Support Support Support Support Support