I've just figured out how to reverse a list of checkboxes

first attempt
$(".check_batch").attr("checked", function () { return (this.checked -
1 % 2); } );

cleaned up
$(".check_batch").attr("checked", function () { return (!
this.checked); } );

Reply via email to