Use .find()
<table id="list">
<thead>
<tr>
<th>Lorem ip sum....</th>
</tr>
</thead>
</table>
$('#list').find("thead");
Hide a thead element after found:
$('#list').find("thead").hide();
Remove a thead element after found
$('#list').find("thead").remove();
What do you think?