HTML DOM Form name Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Form name Property

❮ Form Object

Example

Return the name of a form:

var x = document.getElementById("myForm").name;
Try it Yourself »

Definition and Usage

The name property sets or returns the value of the name attribute in a form.

The name attribute specifies the name of a form.


Browser Support

Property
name Yes Yes Yes Yes Yes

Syntax

Return the name property:

formObject.name

Set the name property:

formObject.name = name

Property Values

Value Description
name The name of the form

Technical Details

Return Value: A String, representing the name of the form

More Examples

Example

Change the name of a form:

document.getElementById("myForm").name = "newName";
Try it Yourself »

Related Pages

HTML reference: HTML <form> name attribute


❮ Form Object