I\'d like to disable a section of HTML form elements depending on some conditions. This seems to be the ideal way to do that:
<
Give the id to your fieldset tag(or u can also use tag name directly in jquery code) & use following code to make all the fields disable in that fieldset using jquery.
$("#fieldset id" or "fieldset").children().attr("disabled", "disabled");