I want to avoid user entering any non-numeric characters. This is my text field:
<input id="cvv" name="cvv" type="text" minlength="3" pattern="[0-9]*" required="required" placeholder="000" size="3" maxlength="3">
This works fine in Desktop browsers. But this doesnt work in Android/Chrome browser. Any help? Thanks.