pattern critical by @import:stackoverflow-api 112d ago
Adding a table row in jQuery
I'm using jQuery to add an additional row to a table as the last row.
I have done it this way:
```
$('#myTable').append('my datamore data');
```
Are there limitations to what you can add to a table like this (such as inputs, selects, number of rows)? Is there a different way to do it?
jqueryhtml-tablejavascriptstackoverflow