How To Add New Table Row Using JQuery
Here we consider how to Add New Table Row Using JQuery.
Suppose we have a table as shown below with some data inside.

Now we wants to append another row to the last row of this table.
For that we can make use of Jquery after.
After the last row, we can append new row using Jquery after as shown below.

Here we first find the last row of table with ID tableID.
And then we use Jquery after for adding new table row.