Horje
10 digit validation in jquery Code Example
10 digit validation in jquery
$("#phone_num").on("blur", function(){
	var mobNum = $(this).val();
	var filter = /^\d*(?:\.\d{1,2})?$/;
	if (filter.test(mobNum)) {
      if(mobNum.length==10){
        alert('Propper Value.');
      } else {
        alert('Please put 10  digit phone number');
        return false;
      }
	} else {
      alert('Not a valid number');
      return false;
    }    
  });




Shell

Related
Verificação de acesso de escrita [/srv/moodle/lib/editor/atto/plugins] Instalação abortada devido a falha de validação Code Example Verificação de acesso de escrita [/srv/moodle/lib/editor/atto/plugins] Instalação abortada devido a falha de validação Code Example
powershell get-childitem Code Example powershell get-childitem Code Example
bash timout Code Example bash timout Code Example
git ssh key linux Code Example git ssh key linux Code Example
how to install webhint globally Code Example how to install webhint globally Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
18