I'm using jQuery along with the jQuery validation plug-in.
I have a table where each column after the first column contains a form field such as a checkbox, a text field, etc. I use <th> for headers, so only <tr> elements have form fields.
How do I select all rows whose entire form fields are empty? By empty, I'm talking about a text field with an undefined value, a checkbox unchecked, a select field with nothing selected, etc. I'm not supposed to select a row if it has at least one non-empty form field.
Is this possible? Can someone please shed some light on this?