THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Email name Property

Input Email Object Reference Input Email Object

Example

Get the name of an email field:

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

The result of x will be:

usremail
Try it yourself »

Definition and Usage

The name property sets or returns the value of the name attribute of an email field.

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.

Note: Only form elements with a name attribute will have their values passed when submitting a form.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The name property is supported in all major browsers.

Note: The <input type="email"> element is not supported in Internet Explorer 9 and earlier versions, or in Safari.


Syntax

Return the name property:

emailObject.name

Set the name property:

emailObject.name=name

Property Values

Value Description
name Specifies the name of the email field

Technical Details

Return Value: A String, representing the name of the email field

More Examples

Example

Change the name of an email field:

document.getElementById("myEmail").name = "newEmailName";
Try it yourself »

Related Pages

HTML reference: HTML <input> name attribute


Input Email Object Reference Input Email Object