I have a table that has a row that is hidden using display:none. I want to show the row when a button is clicked. How can I do this??
<table>
<tr>
<td>
<button class="shownextrow">Show Next Row</button>
</td>
</tr>
<tr style="display:none">
<input type="text" name="input"/>
</tr>
</table>