Skip to content

Instantly share code, notes, and snippets.

@seguelador
Created May 2, 2017 15:25
Show Gist options
  • Save seguelador/81456093f66d9f765c901ef2e17f4782 to your computer and use it in GitHub Desktop.
Save seguelador/81456093f66d9f765c901ef2e17f4782 to your computer and use it in GitHub Desktop.
Method for letters only with accents on Jquery Validation
$.validator.addMethod( "lettersonly", function( value, element ) {
return this.optional( element ) || /^[a-z\s-a-záéíóúý]+$/i.test( value );
}, "Solo letras por favor" );
@depaul18
Copy link

72737

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment