What is the best method in jQuery to add an additional row to a table as the last row?
Is this acceptable:
$('#myTable').append('<tr><td>my data</td><td>more data</td></tr>');
Are there limitations to what you can add to a table like this (such as inputs, selects, number of rows)?
The approach you suggest is not guaranteed to give you the result you're looking for - what if you had a tbody
for example:
<table id="myTable">
<tbody>
<tr>...</tr>
<tr>...</tr>
</tbody>
</table>
You would end up with the following:
<table id="myTable">
<tbody>
<tr>...</tr>
<tr>...</tr>
</tbody>
<tr>...</tr>
</table>
I would therefore recommend this approach instead:
$('#myTable tr:last').after('<tr>...</tr><tr>...</tr>');
You can include anything within the after()
method as long as it's valid HTML, including multiple rows as per the example above.
Update: Revisiting this answer following recent activity with this question. eyelidlessness makes a good comment that there will always be a tbody
in the DOM; this is true, but only if there is at least one row. If you have no rows, there will be no tbody
unless you have specified one yourself.
DaRKoN_ suggests appending to the tbody
rather than adding content after the last tr
. This gets around the issue of having no rows, but still isn't bulletproof as you could theoretically have multiple tbody
elements and the row would get added to each of them.
Weighing everything up, I'm not sure there is a single one-line solution that accounts for every single possible scenario. You will need to make sure the jQuery code tallies with your markup.
I think the safest solution is probably to ensure your table
always includes at least one tbody
in your markup, even if it has no rows. On this basis, you can use the following which will work however many rows you have (and also account for multiple tbody
elements):
$('#myTable > tbody:last').append('<tr>...</tr><tr>...</tr>');
what if you had a tbody for example
Well, what if you had a tfoot? such as:
<table>
<tbody>
<tr><td>Foo</td></tr>
</tbody>
<tfoot>
<tr><td>footer information</td></tr>
</tfoot>
</table>
Then it would insert your new row in the footer - not to the body.
Hence the best solution is to include a <tbody>
tag and use .append, rather than .after.
$("#myTable > tbody").append("<tr><td>row content</td></tr>");
You can use this great jQuery add table row function. It works great with tables that have <tbody>
and that don't. Also it takes into the consideration the colspan of your last table row.
Here is an example usage:
// One table
addTableRow($('#myTable'));
// add table row to number of tables
addTableRow($('.myTables'));
JQuery has a built-in facility to manipulate DOM elements on the fly.
You can add anything to your table like this:
$("#tableClassname").find('tbody')
.append($('<tr>')
.append($('<td>')
.append($('<img>')
.attr('src', 'img.png')
.text('Image cell')
)
)
);
The $('<some-tag>')
thing in JQuery is a tag object that can have several attr
attributes that can be set and get, as well as text
, which represents the text between the tag here: <tag>text</tag>
.
This is some pretty weird indenting, but it's easier for you to see what's going on in this example.
I was having some related issues, trying to insert a table row after the clicked row. All is fine except the .after() call does not work for the last row.
$('#traffic tbody').find('tr.trafficBody).filter(':nth-child(' + (column + 1) + ')').after(insertedhtml);
I landed up with a very untidy solution:
create the table as follows (id for each row):
<tr id="row1"> ... </tr>
<tr id="row2"> ... </tr>
<tr id="row3"> ... </tr>
etc ...
and then :
$('#traffic tbody').find('tr.trafficBody' + idx).after(html);
This can be done easily using the "last()" function of jQuery.
$("#tableId").last().append("<tr><td>New row</td></tr>");
FYI - Avoid using multiple appends (slows down performance tremendously), rather build up your string or use JQuery join which is much faster.
$('table#tbl_sel_drug > tbody > tr:gt(1)').not(':last').remove();
Dude This can solve your problem for deleting all rows except first and last.
Best of luck!!!!
I know this is an old post but I was struggling and the answer given here didn't help so I thought I'd post my answer it might help others searching for this...
$('<tr>...Insert Data ...</tr>').insertAfter("table#editorRows > tbody > tr:last");
Worked a treat ;)
I recommend
$('#myTable > tbody:first').append('<tr>...</tr><tr>...</tr>');
to oppose to
$('#myTable > tbody:last').append('<tr>...</tr><tr>...</tr>');
The 'first' and 'last' keywords work on the first or last tag to be started, not closed. Therefore, this plays nicer with nested tables, if you don't want the nested table to be changed, but instead add to the overall table. At least, this is what I found.
<table id=myTable>
<tbody id=first>
<tr><td>
<table id=myNestedTable>
<tbody id=last>
</tbody>
</table>
</td></tr>
</tbody>
</table>