Archive for the ‘Validations’ Category

Validate Phone Number

Friday, October 10th, 2008
  1. function isPhoneNumber(s)
  2. {
  3. // Check for correct phone number
  4. rePhoneNumber = new RegExp(/^\([1-9]\d{2}\)\s?\d{3}\-\d{4}$/);
  5. if (!rePhoneNumber.test(s)) {
  6. alert(Phone Number Must Be Entered As: (555) 555-1234″);
  7. return false;
  8. }
  9. return true;
  10. }