Open In App

HTML | DOM Input Email multiple Property

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

The Input Email multiple property in HTML DOM is used to set or return whether the user is allowed to input more than one value that presents in an element. It is a Boolean attribute which returns that email field accepts multiple email values or not. It is used to reflect the HTML multiple attributes. When submitting the form, emails are separated by comma. For example: abc@gfg.com, carrers@gfg.com, manas@gfg.com etc. 

Syntax: 

  • It returns the Input Email multiple property.
emailObject.multiple
  • It is used to set the Input Email multiple property.
emailObject.multiple = true|false

Property Values: It contains two values which are listed below:

  • true: It accepts multiple emails.
  • false: It is the default value. It does not accept multiple emails.

Return Value: It returns a Boolean value, that returns true if multiple emails are accepted by email field, otherwise it returns false.

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

html




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email multiple Property
    </title>
</head>    
 
<body style="text-align:center;">
 
    <h1> GeeksforGeeks</h1>
 
    <h2>DOM Input Email multiple Property</h2>
 
    E-mail: <input type="email" id="email"
            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 multiple Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").multiple;
            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 multiple property. 

html




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email multiple Property
    </title>
</head>    
 
<body style="text-align:center;">
 
    <h1> GeeksforGeeks</h1>
 
    <h2>DOM Input Email multiple Property</h2>
 
    E-mail: <input type="email" id="email"
            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 multiple Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").multiple
                    = "false";
            document.getElementById("GFG").innerHTML = em;
        }
    </script>
</body>
 
</html>                   


Output: Before clicking on the Button:

  

After clicking on the Button:

  

Supported Browsers: The browser supported by DOM input Email multiple 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