$('#btnSelectAll').click(function() {
$('.inputchbox').attr('checked', true);
});
$('#btnCancel').click(function() {
$('fieldset:not(:checked)').find("input,select,textarea").removeAttr('disabled');
});
On cancel I need to enable only the checboxes which is checked? canI use somethign like this? thanks
on slectall button I am selecting all the checkbox from my fieldset but here I need to select only enabled checkboxes not disabled checkboxes.. so checkboxes are disabled on my fieldset on the load it self?
how to exclude diabled checkboxes?
thanks