I have a form with jquery validation .After submitting the form I load the same form through Ajax . My problem is jquery validation is not working for ajax loaded form . I h
use on function. .
example:
$(document.body).on('click', '.submitBtn', function(){ $("#form").validate({ submitHandler: function() { // do anything } }); });