Input Email type Property
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
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