Still not working, weird, here it is as it stands:

$('input[type=checkbox]').bind("click",function(){
            var el=$(this).parent().next('td select')
            if (this.checked) {
                el.attr('disabled', false);
            } else {
               el.attr('disabled', true);
            }
        }).each(function(){ var el=$(this).parent().next('td select');
        if (this.checked) {
               el.attr('disabled', false);
            } else {
             el.attr('disabled', true);
            }
         });

Reply via email to