For example I have 3 forms in a page with the same names. How can I validate all these forms with one validate method?
I've created fiddlefor you. Add ids if you really need them.
Key is to add same class to forms and validate each form.
$('form.validateForm').each(function(key, form) { $(form).validate(); });