At id column I need to add auto generated ID value dynamivcally when I added a new row
<table>
<tr>
<th>Employee Id</th>
<th>Employee Name</th>
<th>Salary</th>
<th>Email</th>
</tr>
<tr>
<td ></td>// for id
<td><input type="text" id="new_name"></td>
<td><input type="text" id="new_salary"></td>
<td><input type="text" id="new_email"></td>
</tr>
</table>