check box issue with IE6
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-06-08T03:51:27Z
Indexed on
2010/06/08
4:02 UTC
Read the original article
Hit count: 306
jQuery
This is my new post regardence of prevoious post with update html code..
This is my selectall button code..on clicking this i am selecting all checkboxes..
$('#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');
});
This code working in Firefox not in IE can anybody help me out why its doing like this?
thanks
© Stack Overflow or respective owner