HTML <input> with pattern Attribute
HTML <input> with pattern Attribute
The pattern
attribute specifies a regular expression that an <input> element's value is validated against.
Note: The validation is done at the time of submitting a form.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<form action="/user-age.php" id="myForm">
<p>What is your age?</p>
Age: <input type="text" name="age" pattern="[0-9]{1,2}">
<input type="submit" value="Submit">
</form>
</body>
</html>
Attribute Value
Value | Explanation |
---|---|
regExp | Specifies a regular expression that an <input> element's value is validated against. |
Reminder
Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in HTML.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.