Multiple jQuery validation + ajaxSubmit

Multiple jQuery validation + ajaxSubmit

Hello there.

I'm trying to find out how to validate and submit with ajax multiple forms.

Here is my code:

  1. $('form.reply_form').validate({
            submitHandler: function(form) {
                $(form).ajaxSubmit(optionsReplies);
                return false;
            }
        });




The problem is that when I try to validate, for example, the 3rd form it only validates the first one. It only validates the first form and thats all.

Image this just like the facebook wall. Any help or any suggestion will be appreciated.

Thanks in advance.