You should be able to do this very easliy with the validation plugin.
If the validation rules are exactly the same then you could apply the
same ID to each form. However, it's most likely that you need specify
different rules for each form:

(#form1).validate({
     rules: etc.
     messages: etc.
});

(#form2).validate({
     rules: etc.
     messages: etc.
}):

On your forms you would specify the proper ID:

<form id="form1" action="">
</form>

<form id="form2" action="">
</form>

This is an example with two forms:
http://jquery.bassistance.de/validate/demo/

Tim

On Mar 13, 3:36 pm, Hellofrom <hellof...@gmail.com> wrote:
> Hello every one,
> I need your help , how can i use validation plug in to validate two form in
> the same page
> thanks

Reply via email to