Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Created March 10, 2015 14:47
Show Gist options
  • Save jesusgoku/7c6cd55fac5732374d7e to your computer and use it in GitHub Desktop.
Save jesusgoku/7c6cd55fac5732374d7e to your computer and use it in GitHub Desktop.
Regexp validator to jQuery Validation Plugins
$.validator.addMethod('regexp', function (value, element, params) {
return this.optional(element) || params.test(value);
}, 'Por favor, escribe un formato valido.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment