How to validate Indian Mobile number?
I have developed one website where we required validation for indian mobile during registration. can anyone give me the code?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
<form action="" method="post">
<input type="text" name="" maxlength="10" pattern="^([6-9]{1})([0-9]{9})$" title="Please enter a valid number">
<input type="submit" name="submit" value="SUBMIT">
</form>