I have a form that I add with Ajax and use the jQuery Validate. I delegate associate with .on() but this does not attached to the form.
Not sure what I might have missed and there is very little details about using Validate.js with a dynamic form
$(document).ready(function(){
$("body").on("validate", "#contactForm", function() {
$('#contactForm').validate({
....
}); // <- end '.validate()'
});
});