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
After you load the new form into the DOM, you need to reinitialize the validation plugin on it, since it's a different DOM element from the one that you previously loaded. You need to do this in the AJAX callback function that loads the new HTML into the DOM.