I have a empty table that I would like to populate based on data entered on the same page.
Example. User enter Name, DOB. Click Add. Table with Name and DOB column has +1 row. And additions can be made as many times as the user choose.
<table width= "100%">
<tr>
<th colspan="3">Owners Already Added</th>
</tr>
<tr>
<td>(NAME)</td>
<td>(DOB)</td>
</tr>
</table>
<table id="Owner">
<tr>
<th colspan="2">Owner</th>
</tr>
<tr>
<td>Name</td>
<td><input id="txtName" type="text" /></td>
</tr>
<tr>
<td>Address</td>
<td><input id="txtDOB" type="text" /></td>
</tr>
</table>