how to access the html appended class inside the jquerry constructed html table taags code example
Example 1: jquery append table row
$('#someTableID tr:last').after('<tr><td>Some data here</td></tr>');
Example 2: add table row jQuery
$('#myTable tr:last').after('<tr>...</tr>');