Open In App

HTML | DOM Input Email pattern Property

Improve
Improve
Like Article
Like
Save
Share
Report

The Input Email pattern property in HTML DOM is used to set or return the pattern attribute of an email field. It is used to specify the regular expression on which the input elements value is checked against. Use the Global title attribute to describe the pattern for helping the user. 

Syntax:

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

Property Values: It contains single value regexp which is used to specify the regular expression that an email field value is checked against. 

Return Value: It returns a string value which represents the regular expression that an email field value is checked against. 

Example: This example illustrates the use of Input Email pattern property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Email pattern Property
    </title>
</head>    
<body style="text-align:center;">
    <h1> GeeksforGeeks</h1>
    <h2>DOM Input Email pattern Property</h2>
    E-mail: <input type="email" id="email" name="myGeeks"
        pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2, 4}$">
    <br><br>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:20px;color:green;"></p>
     
    <!-- Script to return Input Email pattern Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").pattern;
            document.getElementById("GFG").innerHTML = em;
        }
    </script>
</body>
</html>


Output: 

Before clicking on the Button:

  

After clicking on the Button:

  

Supported Browsers: The browsers supported by DOM input Email pattern Property are listed below:

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

Last Updated : 25 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads