I have this
<tr>
<td nowrap="true" valign="top" width="190px" class="ms-formlabel"><h3 class="ms-standardheader">
<nobr>Estado</nobr>
</tr>
<tr>
...
...
...
</tr>
<tr>
...
...
...
</tr>
<tr>
...
...
...
</tr>
What I want is that the tr where the label <nobr>
has value "Status" is hiding the tr completely
I'm trying
$("tr[nobr='Estado']").hide();
But it does not do anything
How to filter by label and its value?
Thanks