I currently have a table with 2 rows.
Row 1 has and image and row 2 is hidden.
Using JQuery I need to show this hidden row.
Here is the table:
<table>
<tr>
<td><img src="/default.png" alt="" /></td>
</tr>
<tr style="display:none">
<td><img src="/default2.png" alt="" /></td>
</tr>
</table>
Who would’ve guessed?