Answers for "input valid 10 digit"

0

contact text box accept only till 10 digit in html

<input type="text" maxlength="10" pattern="\d{10}" title="Please enter exactly 10 digits" />
Posted by: Guest on December-30-2020
0

textbox should accept only numbers till 10 digit using angular

<input type="text" name="country_code" title="Error Message" pattern="[1-9]{1}[0-9]{9}">
Posted by: Guest on December-07-2020

Code answers related to "input valid 10 digit"

Browse Popular Code Answers by Language