Diego Lopes Lima

Results 9 comments of Diego Lopes Lima

I dont know, but I'll do some tests to verify this. Thank you!

I will completely refactor this repository, and as a consequence I will create a new version based on [Warble](https://github.com/DiegoLopesLima/warble) with features similar to the current version, and a clearer and...

Hi @binu101! You can send me a snippet of your code and jQuery version?

Very thanks @benperiton! I'm working to fix this error. In the meantime, you can do anything like this to "destroy" validation: ``` javascript var form = $('form').removeData('validate').off('validate'); $('input,select,textarea').filter(function() { return...

Rest assured, your comment was very useful. Very thanks!

- [ ] Create a general conditional function to verify the form after all validations. - [ ] Trigger `valid` and `invalid` callbacks and custom events.

A new element appended to the form, is validated automatically after the submit event.

There may be a particularity in your case. But you can try to fix this problem using the `jQuery.fn.each` method: ```javascript $('.ajax_form').each({ $(this).validate(/* {...} */); }); ```