how to insert new table in the exisitng table row using jquery code example
Example 1: how to append rows in table using jquery each function
BY LOVE
Note : 1- 'tblEmployee' is the ID of the table body
$.each(Result, function (key, value)
{
$('#tblEmployee').append('<tr> <td>' + value.EmployeeId + '</td> <td>' + value.Name + '</td> <td>' + value.Gender + '</td> <td>' + value.StateId + '</td> <td>' + value.CityId + '</td> <td>' + value.PhoneNumber + '</td> <td>' + value.Salary + '</td></tr>');
})
Example 2: jquery append table row
$('#someTableID tr:last').after('<tr><td>Some data here</td></tr>');