table append td tr js code example
Example 1: Add table row in jQuery
$('#myTable tr:last').after('<tr>...</tr><tr>...</tr>');
//OR
$('#myTable > tbody:last-child').append('<tr>...</tr><tr>...</tr>');
Example 2: push tr in tbody using jquery
$("#tableId > tbody").append(data);