I can't seems to find a way to hide only a part of a table. Look to the code below:
Code:
<table>
<tr>
<td>col1</td>
<td>col2</td>
</tr>
<div id="bla" style="display: none">
<tr>
<td>col1content</td>
<td>col2content</td>
</tr>
</div>
</table>
I'm used with html, but it's the first time I try to use that, so I don't know if it's possible. I only wants to hide a part of the table, then when a checkbox is checked I display other rows on the table with display: block.