I have to validate input text field as a phone number field. To do that I'am going to use HTML5 validation.
I already wrote code like this:
<input maxlength="8" type="text" name="phone" required />
I used required to validate this form. But how to validate this for Enter only digits and 8 digits.