THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Email type Property

Input Email Object Reference Input Email Object

Example

Return which type of form element the email field is:

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

The result of x will be:

email
Try it yourself »

Definition and Usage

The type property returns which type of form element the email field is.

For an input type="email", this property will always return "email".


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The type 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

emailObject.type

Technical Details

Return Value: A String, representing the type of form element the email field is

Input Email Object Reference Input Email Object