$('#btnCancel').click(function() {
$('fieldset:not(:checked)').find("input,select,textarea").removeAttr('disabled');
});
how to enable only checked boxes? on the fieldsset? but when I do this code its enabling all my fields in the fieldset I need to enable only the fields which checkbox is enabled?
thanks
You can try something like this: