I have a jQuery selector that looks like this ...
$(\"input:checkbox\").click(function(event) { // DO STUFF HERE }
Everything was working
$('input:checkbox:not("#thatCheckboxId")').click(function(event) { // DO STUFF HERE }
Just give the checkbox in question a unique id=""
id=""