I dont know if this is even possible, but I have a situation where I need to be able to hide the previous table row onload.
Situation:
<table>
<tr>
<td>1</td>
<td>a</td>
</tr>
<tr>
<td>2</td>
<td>b</td>
</tr>
<tr id="removeabove">
<td>3</td>
<td>c</td>
</tr>
</table>
Now again I dont know if this is even possible, havent found it so far, but when I put the id removeabove
in a row, I want the previous row to go poof and be gone (display: none;)
Tnx in advance