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
If for some reason you can't add an ID to the fieldset (which is usually preferred), you can always do this to hide all it's children elements:
$('fieldset:first > *').attr('disabled','disabled');