Hi,
How to add or insert rows to HTML Table on Button Click in JavaScript.
<table>
<thead>
<tr>
<th>Name</th>
<th>Country</th>
<th></th>
</tr>
</thead>
</table>
<table>
<tr>
<td><input type="text" id="txtName" /></td>
<td><input type="text" id="txtCountry" /></td>
<td><input type="button" value="Add" /></td>
</tr>
</table>