Jquery chebox selection not working in IE this is working in firefox
- by kumar
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