You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
317 B
JavaScript

$(document).ready(function () {
// Normally no JS is required to initialize parsley, however
// we will use it to do a faux-validation
// Do see the docs for configuration options
$('#validate-form .btn').on('click', function () {
$('#validate-form').parsley().validate();
});
});