I have the following loop that searches for checked checkboxes and edits each line accordingly.
$("table.authors-list").find('input[type="checkbox"][name^="treated"]:checked').each(function () { var row = $(this).closest('tr'), priceInput = row.find('input[name^="transportprice"]'); priceInput.val(treatedtransportcostperton.toFixed(2)); });
which is the opposite :checked , since I want to scroll the table where the checkbox is not checked?
Thanks in advance.
source share