Answers for "how to give information about regular expression in input field"

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 "how to give information about regular expression in input field"

Browse Popular Code Answers by Language