I am currenlty using this to see if each rows check box in a specified table is checked.
$("#table_pdf_view input[type=checkbox][checked]").each(
function() {
}
);
If the row is checked I want it to use the checkboxes input id to update a seperate hidden table.
echo '<td width="200px"><input type=" checkbox" id="'.$row['client_id'].'" name="download"></td>'.PHP_EOL;
The hidden table will contain one input field. If multiple rows are checked I would like to separate each id by a comma.