$('fieldset').not('#Pchk input[type=checkbox]').find("input,select,textarea").attr('disabled','disabled');
Pchk is the id of my input checkbox
and even i did this code to its not working out for me..
$('fieldset').not(':checkbox').find("input,select,textarea").attr('disabled','disabled');
if I use this code its disabling even my checkbox from fieldset? this code is right?
thanks