-
Notifications
You must be signed in to change notification settings - Fork 212
Open
Description
Hi,
I've made a dynamic validator for the web application which I'm currently working on.
I dynamically build the element selector and call the form validation like this:
jQuery($el).validate();However, when I want to reload the validation of a form, for example when loading different values from AJAX, i'm using a direct call to the form to destroy validation like:
jQuery('#create_user_form').validateDestroy();This does not destroy validation, can you please help me?