How to validate that the mobile number is 10 digits using jquery

How to validate that the mobile number is 10 digits

 

In this post,i will tell how you can allow only 10 numbers in textbox using jquery .we just allow only 10 digit number validation in jquery. user can only enter 10 numbers in textbox using jquery for phone number or mobile validation.


I will give you simple four example of how to restrict user to type 10 digit numbers in input element.

<!DOCTYPE html>

<html>

<head>

  <meta charset="utf-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">

   <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>

  <title></title>

</head>

<body>


<input type="text" name="fieldName" id="fieldSelectorId">

<script type="text/javascript">

  jQuery(document).ready(function () {

      jQuery("#fieldSelectorId").keypress(function (e) {

         var length = jQuery(this).val().length;

       if(length > 9) {

            return false;

       } else if(e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {

            return false;

       } else if((length == 0) && (e.which == 48)) {

            return false;

       }

      });

    });

</script>


</body>

</html>

Our Best Popular Projects & Posts

Post Link
Online Voting System Project in php With Full Source Code In php click here
School Management System With Full Source Code In php click here
ecommerce project in php click here
simple login and registration form in php click here
Synopsis for online rooms booking project based on PHP click here
add multiple images in codeigniter click here
beginners project in php with source code click here
dynamic country state dropdown in codeigniter click here
how to generate pdf using dompdf in codeigniter click here
add 1 day to current date in php click here
how to check website/blog responsive or not? click here
employee attendance management system project in php with source code click here
Select one checkbox and disable others click here
printing div content with css applied click here
best restaurants management system in php click here
Preview an image before it is uploaded using jquery click here
text editor in jquery click here
data table with export button in html click here
add multiple images in codeigniter click here
codeigniter some steps to install on Your server click here
ajax in php/codeigniter click here
Create Simple API CRUD with PHP and MySQL click here
How to integrate bootstrap theme in codeigniter click here
how to prepare for interview click here
Convert a date format in PHP click here
how to export html table to excel in jquery click here
how to create duplicate google peg using ajax click here
how to make dropdown searchable in html using jquery click here
how to find retirement date in php click here
online food order system in php with source code click here
school management project admin panel in php click here

0 Comments