I have following existing table
Currently, It have Total 4 Rows.
I want to add one more row, Just after the last table row. Which should look like below:
Now, how can I add new table-row in existing table in single line?.
Soltion:
Step 1: Add jQuery file in webpage.
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
Step 2: Just add following script when you want to add new table row in existing table.
$('table#myTestTable tr:last').after('...');It will add one new row in exiting table @ the end each time you call this script.