Open In App

HTML | DOM Input Text pattern Property

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

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 Input Text pattern property.
textObject.pattern
  • It is used to set Input text pattern property.
textObject.pattern = regexp

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

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

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

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Text Pattern Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Text pattern Property</h2>
    <form id="myGeeks">
        <input type="text" id="text_id" pattern="[A-Za-z]{3}">
    </form>
    <br><br>
    <button onclick="myGeeks()">Click Here!</button>
    <p id="GFG" style="font-size:20px;"></p>
     
    <!-- script to return the pattern Property-->
    <script>
        function myGeeks() {
            var txt = document.getElementById("text_id").pattern;
            document.getElementById("GFG").innerHTML = txt;
        }
    </script>
</body>
</html>


Output: 

Before Clicking the Button:

  

After Clicking the Button:

  

Supported Browsers: The browser supported by DOM Input Text pattern Property are listed below:

  • Google Chrome 1+
  • Edge 12+
  • Firefox 1+
  • Opera
  • Safari 1+

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

Similar Reads