Click here to Skip to main content
15,896,726 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear sir,
plz answer Local with international Phone No validation in ASP.NET like local No: +91-9090908765,International No: +49-89-636-48018
Posted
Comments
[no name] 19-Oct-12 6:17am    
"plz" is on vacation this week. What have you tried?
Sumit_Kumar_Sinha 19-Oct-12 6:31am    
can u explain question.............clearly i m not getting.

1 solution

jQuery international phone number validaiton method for jquery.validate.js


PHP
$.validator.addMethod('phone', function(value) {
var numbers = value.split(/\d/).length - 1;
return (10 <= numbers && numbers <= 20 && value.match(/^(\+){0,1}(\d|\s|\(|\)){10,20}$/)); }, 'Please enter a valid phone number');




You can use jquery for check local and international format
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900