I have a list of checkboxes and with every checkbox, there is an input field. If I check the checkbox, the inputfield has to be disabled. Example:
Checkbox 1 -
if you have this "very" simple structure
you can
$(':checkbox').change(function(){
$(this).next().attr('disabled',!this.checked);
});
here is a demo
but then I know you don't have that "very" simple structure so, read the following and get the idea from above...
If you can provide the structure of your html, much better...