How do I hide a certain label dynamically along with it's leading th tag?
example:
<th class="woo_metabox_names"><label for="woothemes_size">sq ft</label></th>
I tried and this doesn't work, by the way:
$('label[for="woothemes_size"]').hide();
To hide both the label and th elements, you can use:
$('label[for="woothemes_size"]').parent().hide();
display to none for each element that hide is called on), but you're probably right.