if i have a table like this
<table width="500" border="0" style="border:0px;" id="options">
<tr>
<td>Designers</td>
<td><input type="checkbox">
</tr>
</table>
how would i hide the row with designers?
i was guess it would look something like this
$(document).ready(function() {
if( $('table #options tr td').html('Designers') {
$(this).css('display','none');
}
});
but am not sure
thanks