The pattern Attribute
The pattern Attribute
<pre><code>//an input field that can contain only three letters (no numbers or special characters)
Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"></code></pre> Specifies a regular expression that the <input> element's value is checked against.
Works with the following input types: text, search, url, tel, email, and password.
Semantic portal