I have a piece of code that is dynamic and I need to hide the second and fourth 'tr' elements of the table with the id HMP_options. How can I accomplish this?
<table id="HMP_options" width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td align="left" colspan="2">
<table cellspacing="0" cellpadding="0" border="0">
<input></input>
<tbody>
<tr><td></td></tr>
<tr><td></td></tr> <!-- this tr i want to hide -->
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td></td></tr> <!-- this tr i want to hide -->
</tbody>
</table>
</td>
</tr>