My SelectAll Funcatinality working in Firefox not in IE?
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-06-07T22:47:59Z
Indexed on
2010/06/07
22:52 UTC
Read the original article
Hit count: 189
jQuery
this is my Select all Checkboxes in Fieldset.. this code is working in Firefox not in Internet Explorer can anybody help me out?
$('#PbtnSelectAll').click(function() {
$('#PricingEditExceptions input[type=checkbox]').attr('checked', 'checked');
$('#PbtnSubmit').show();
$('#PbtnCancel').show();
$('fieldset').find("input:not(:checkbox),select,textarea").attr('disabled', 'disabled');
$('#genericfieldset').find("input,select,textarea").removeAttr('disabled');
});
thanks
© Stack Overflow or respective owner