How can I save and restore all values of Input controls that putted in a DIV using jQuery ?
should I use jQuery Serialize API ?
For example there are three input controls in below DIV , How to Store and restore values using jQuery?
<Div Id=Test>
<table >
<tr>
<td>
Name
</td>
<td>
<input name="WebUserControl1$TextBox1" type="text" id="TextBox1" />
</td>
</tr>
<tr>
<td>
Family
</td>
<td>
<input name="WebUserControl1$TextBox2" type="text" id="TextBox2" />
</td>
</tr>
<tr>
<td>
age
</td>
<td>
<input name="WebUserControl1$TextBox3" type="text" id="TextBox3" />
</td>
</tr>
</table>
</Div>