I have the following loop that looks for checked checkboxes and edits each row 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));
});
what is the opposite of :checked as I want to loop through the table where the checkbox are not checked?
Thanks in advance.