Answers for "allow only specific pattern in input box html"

0

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 "allow only specific pattern in input box html"

Browse Popular Code Answers by Language