Its a dynamic code and i would like to hide second and 4th tr of the table using table id HMP_options. How to achieve 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>
Its a dynamic code and i would like to hide second and 4th tr of the table using table id HMP_options. How to achieve 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>
Share Improve this question edited Feb 4, 2014 at 7:11 user2787474 asked Feb 4, 2014 at 6:48 user2787474user2787474 1293 gold badges5 silver badges18 bronze badges
4 Answers
Reset to default 7I would use this CSS rule:
#HMP_options table tr:nth-child(-2n + 4) {
display: none;
}
http://jsfiddle/ZXjWV/
Since this is IE9+ you might want to make jQuery help it.
In this example I assumed that you want only hide 2nd and 4th row. If you want to hide 6th, 8th and so on as well you should use :nth-child(2n)
rule.
try this
.HMP_options > table td:nth-child(2),
.HMP_options > table td:nth-child(4) { display:none;}
Using css:
.HMP_options tr:nth-child(2), .HMP_options tr:nth-child(4){display: none;}
Using jQuery:
$('.HMP_options tr:nth-child(2), .HMP_options tr:nth-child(4)').css('display','none');
Use eq in jquery . Select the element at index n within the matched set. Zero-based index of the element to match.
$("tr:eq(1),tr:eq(4)").hide();