I have 2 s on my page, but one of them should have all of it elements disabled depending on some user\'s choice.
The fieldsets contain text
Assuming you set a class="disableMe" on the fieldset you want to disable any input elements then the following code should do what you need:
$('fieldset.disableMe :input').attr('disabled', true)