I need to put a table in the div which contains textboxs and labels when someone click on a button.
Structure of table is as below…
<table>
<tr>
<td>
<label id="l1" text="adfa"></label>
</td>
<td>
<input type="text" id="t1">
</td>
</tr>
<table>
The no of rows can vary but the structure of a row will be same as here in the above table.
I am trying to use Placeholder but confused how to put all the stuff their…
I was looking for this..