Dave Moore
0
Q:

html input only letters


<input type="text" pattern="[a-zA-Z'-'\s]*">
2
<input type="text" name="Phone Number" pattern="[7-9]{1}[0-9]{9}" 
       title="Phone number with 7-9 and remaing 9 digit with 0-9">
1
<!--To stop input from accepting numbers-->
<input onkeypress="return /[a-z]/i.test(event.key)" >
0

New to Communities?

Join the community