0
Create a form in html5 .It must have pattern attribute which should validate the input given by you
Use html5 pattern only
1 Respuesta
0
Dattatraya Shinde
This will allow only 3 chars which may be letter
<input type="text" pattern="[A-Za-z]{3}" >