Answers for "how to allow only alphabet in html input"

5

html input only letters

<!--To stop input from accepting numbers-->
<input onkeypress="return /[a-z]/i.test(event.key)" >
Posted by: Guest on December-01-2020

Code answers related to "how to allow only alphabet in html input"

Browse Popular Code Answers by Language