Open In App

HTML | DOM Input Email name Property

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input Email name property in HTML DOM is used to set or return the value of name attribute of an email field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. 

Syntax:

  • It returns the Input Email name property.
emailObject.name
  • It is used to set the Input Email name property.
emailObject.name = name

Property Values: It contains single value name which defines the name of the email field. 

Return Value: It returns a string value which represents the name of the email field. 

Example 1: This example illustrates how to return Input Email name property. 

html




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email name Property
    </title>
</head>    
 
<body style="text-align:center;">
 
    <h1> GeeksforGeeks</h1>
 
    <h2>DOM Input Email name Property</h2>
 
    E-mail: <input type="email" id="email" name="myGeeks"
            value="careers@geeksforgeeks.org" multiple>
             
    <br><br>
 
    <button onclick="myGeeks()">
        Click Here!
    </button>
     
    <p id="GFG" style="font-size:20px;color:green;"></p>
     
    <!-- Script to return Input Email name Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").name;
            document.getElementById("GFG").innerHTML = em;
        }
    </script>
</body>
 
</html>                       


Output: 

Before clicking on the Button:

  

After clicking on the Button:

  

Example 2: This example illustrates how to set Input Email name property. 

html




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email name Property
    </title>
</head>    
 
<body style="text-align:center;">
 
    <h1> GeeksforGeeks</h1>
 
    <h2>DOM Input Email name Property</h2>
 
    E-mail: <input type="email" id="email" name="myGeeks"
            value="careers@geeksforgeeks.org" multiple>
             
    <br><br>
 
    <button onclick="myGeeks()">
        Click Here!
    </button>
     
    <p id="GFG" style="font-size:20px;color:green;"></p>
     
    <!-- Script to set Input Email name Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").name
                    = "myEmail";
                     
            document.getElementById("GFG").innerHTML
                    = "The value of the name attribute"
                      + " was changed to:" + em;
        }
    </script>
</body>
 
</html>                               


Output: 

Before clicking on the Button:

  

After clicking on the Button:

  

Supported Browsers: The browser supported by DOM input Email name property are listed below:

  • Google Chrome 5
  • Edge 12
  • Firefox
  • Opera 11
  • Safari


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads