HTML | DOM Input Email pattern Property Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like 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.patternIt 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+FirefoxOpera 11+Safari Comment More infoAdvertise with us Next Article HTML | DOM Input Email pattern Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input Email maxLength Property The Input Email maxLength property in HTML DOM is used to set or return the value of maxlength attribute of a Email Input Field. It specifies the maximum number of characters that have been allowed in the email field. The default value of Input Email maxLength property is 524288. Syntax: It returns 2 min read HTML | DOM Input URL pattern Property The DOM Input URL pattern Property in HTML DOM is used to set or return the pattern attribute of a URL field. It is used to specify the regular expression on which the input elements value is checked. Use the global title attribute to describe the pattern for helping the user. Syntax: It returns the 2 min read HTML | DOM Input Text pattern Property The Input Text pattern Property in HTML DOM is used to set or return the pattern attribute of an text field. It is used to specify the regular expression on which the input elements value is checked. Use the global title attribute to describe the pattern for helping the user. Syntax: It returns the 2 min read HTML | DOM Input Search pattern Property The DOM Input Search pattern Property in HTML DOM is used to set or return the pattern attribute of a search field. It is used to specify the regular expression on which the input elements value is checked. Use the global title attribute to describe the pattern for helping the user. Syntax: It retur 2 min read HTML | DOM Input Email type Property The Input Email type property in HTML DOM is used to return the type of form element of the Email field. It always returns an email for an Input Email Field. Syntax: emailObject.type Return Values: It returns a string value that represents the type of form element of the Email field. The below progr 1 min read Like