I have three input list and a submit button in a form. there is a table under the form too. I want when I click the submit button, see my input values in the table without reloading page.
<input name="Choose1">
<input name="Choose2">
<input name="Choose3">
<input type="submit" value"Add">
<table>
<tr>
<th>Field 1</th>
<th>Field 2</th>
<th>Field 3</th>
</tr>
<tr>
<td>Value 1</td>
<td>Value 2</td>
<td>Value 3</td>
</tr>
</table>
it's clear that at first table should be empty. add I should add an element for many times