Jquery checkbox issue with IE6

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-06-08T11:49:52Z Indexed on 2010/06/08 11:52 UTC
Read the original article Hit count: 304

Filed under:

this code works fine in Firefox but not in IE6.. i made changes using boolean true, false but still..

$('#PbtnSelectAll').click(function() {
        $('#PricingEditExceptions input[type=checkbox]').attr('checked', 'checked');
            $('#PbtnSubmit').show();
            $('#PbtnCancel').show();
            $('fieldset').find("input:not(:checkbox),select,textarea").attr('disabled',true);
            $('#genericfieldset').find("input,select,textarea").removeAttr('disabled');

        });

the problem is i am having the view with Fieldsets.. each fieldset having the checkbox when i click onselect all buton its should select all the fieldset checkboxes..but its not doing its allwasy doing for first fieldset which is closest....other things are igonring but its working in firefox..

thanks

© Stack Overflow or respective owner

Related posts about jQuery