Hi,
I have a page that contains several forms that are identical throughout a page. I submit these forms using the $.ajax() method.
As I see it using classes to identify/submit/validate the individual forms will likely be problematic. Passing the form with something like $('.someForms').serialize()
would not produce viable results. How would .serialize()
select the proper form??
Even if .serialize() would work, I'm not sure how to go about applying any form validation suggestions to specific fields...
The other option I see is to code for each form.
Ex: $('#thisForm').serialize();
I'm curious how you jQuery guru's handle multiple forms like this?