Skip to content

Instantly share code, notes, and snippets.

@delphinpro
Created April 27, 2017 11:51
Show Gist options
  • Select an option

  • Save delphinpro/f44e9a972f2b3bb15fc340fdead90060 to your computer and use it in GitHub Desktop.

Select an option

Save delphinpro/f44e9a972f2b3bb15fc340fdead90060 to your computer and use it in GitHub Desktop.
Phone numer validator for jQuery Form Validator (http://www.formvalidator.net/)
$.formUtils.addValidator({
name : 'tel',
validatorFunction: function (value, $el, config, language, $form) {
return /^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/.test(value);
},
errorMessage : 'Please enter a valid phone number',
errorMessageKey : 'badTel'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment