I am facing a situation where a there is a table row with a from element (Radio Button) in it. This table row doesn't have id or class so that I could hide it. (Table is generated at server end with no access.)
I wanted to know if we can hide a table row based on the value of a from element which is inside this table row.
Can I hide this row (TR) by using the VALUE Custom_03 of Radio Button?
Note: I cannot use Field_39 in this case because here it's a group radio buttons. So, I have to go with the VALUE of the element.
<tr valign="top" style="width: 400px; ">
<td style="width: 400px; ">
<input id="FIELD_39" type="radio" checked="" name="FIELD_39" value="Custom_03">
<span>Envelopes: £ 0.00</span>
</td>
</tr>