Jquery chebox selection not working in IE this is working in firefox

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-06-08T03:00:27Z Indexed on 2010/06/08 3:02 UTC
Read the original article Hit count: 192

Filed under:

This is my selectall button code..on clicking this i am selecting all checkboxes..

**$('#PbtnSelectAll').click(function() {
            $('#Fieldset input[type=checkbox]').attr('checked', 'checked');
            $('#PbtnSubmit').show();
            $('#PbtnCancel').show();
        });

**

This code working in Firefox not in IE can anybody help me out why its doing like this?

thanks

© Stack Overflow or respective owner

Related posts about jQuery