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
What about using the children selector?
$("#myfieldeset").children().attr("disabled", "disabled");
You can also filter the children selection:
$("#myfieldeset").children("a,input");