I have a table with multiple rows. Each row is a form. I want to use JQuery to submit all the forms that have the check box checked. The form is posting to an IFrame so there is not much need for AJAX.
So far I have:
$('form').submit();
which submits the form. but all forms. There is arbritary number of rows, could be 80-100.
Off the top of my head, you probably want something like this
This will find the checked form fields, traverse up to find the parent form object and submit that.