Answers for "what would be the accepted max length for a mobile number input]"

2

simple way to make a text field to accept numbers only with maximum number of length 13 digit and min 10

<input name="phoneNumber"
    oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
    type = "number"
    maxlength = "10"
 />
Posted by: Guest on December-23-2020

Code answers related to "what would be the accepted max length for a mobile number input]"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language