Can you run a check to see if a checkbox is the only value checked against a group?
$("#ID").change(function() {
if ($("#checkboxA").is(":checked") && NOTHING ELSE IS CHECKED) {
//do somethinge
} else {
//do something else
}
});
I need help with the "&& NOTHING ELSE IS CHECKED" and Im still not sure this would be a change function