Created
January 8, 2016 09:22
-
-
Save marcogrueter/61c0c63209393aa315ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// zuerst data attribute an felder anhängen, dann parsley initialisieren | |
// vorname muss eingegeben werden und mind. 3 zeichen enthalten | |
$('#contact_vorname').data('parsleyRequired', 'true'); | |
$('#contact_vorname').data('parsleyMinlength', 3); | |
// init parsley | |
$('#form').parsley(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment