Except the input check box i need to disable all other input using jquery
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-06-05T23:30:00Z
Indexed on
2010/06/05
23:32 UTC
Read the original article
Hit count: 194
jQuery
$('fieldset').not('#Pchk input[type=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
© Stack Overflow or respective owner