How to restrict my text box to only numbers with minimum length to 10 and another version like accept + at the start and after two & three & numbers - should come..like +91-123-456-7890
Here is my code
<input type="text" maxlength="10" onkeyup="if (/\D/g.test(this.value))
this.value = this.value.replace(/\D/g,'')" name="mobile" placeholder="Mobile Number">