I saw this on jsfiddle and I wanted to know how I would alter it so that if and only if 45 is checked the rest are disabled, if if 45 is unselected then the rest are enabled. I should be able to do all this with out submitting the form.
The example javascript on jsfiddle:
$(function(){
$(".rambo").change(function(){
$(this).siblings().attr("disabled", $(this).is(":checked"));
});
});
Just add proper
ids and select on thatHTML:
JS:
JSFiddle