 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML DOM Input Email type Property
The HTML DOM Input Email type property returns/sets type of Input Email.
Syntax
Following is the syntax −
- Returning string value
inputEmailObject.type
- Setting type to string value
inputEmailObject.type = stringValue
String Values
Here, “stringValue” can be the following −
| stringValue | Details | 
|---|---|
| It defines that input type is email | |
| datetime-local | It defines that input type is datetime-local | 
| radio | It defines that input type is radio | 
| tel | It defines that input type is tel and a number keypad is shown for input | 
Example
Let us see an example of Input Email type property −
<!DOCTYPE html> <html> <head> <title>Input Email type</title> <style>    form {       width:70%;       margin: 0 auto;       text-align: center;    }    * {       padding: 2px;       margin:5px;    }    input[type="button"] {       border-radius: 10px;    } </style> </head> <body> <form> <fieldset> <legend>Email-type</legend> <label for="EmailSelect"></label> <input type="email" id="EmailSelect" > <input type="button" onclick="getTypeOfInput()" value="What to enter?"> </fieldset> </form> <script>    var labelSelect = document.querySelector("label");    var inputEmail = document.getElementById("EmailSelect");    function getTypeOfInput() {       labelSelect.innerHTML = inputEmail.type.toUpperCase()+' ID: ';    } </script> </body> </html>  Output
This will produce the following output −
Before clicking ‘What to enter?’ button −

After clicking ‘What to enter?’ button −

Advertisements
 