vote up 25 vote down star
11

What is the best method in jQuery to add an additional row to a table as the last row?

flag

70% accept rate
1  
OK, the questions should have been combined, but they are still valid questions. I'm learning JQuery myself and found the question useful, so have voted it up. Those people calling Daryl a point whore or spammer need to just use the vote down button and keep their personal views to themselves. – Ash Oct 5 '08 at 1:34
Thxs Ash. I too am just learning jQuery and finding it hard to figure out the best way, especially simple things. The reason they are as 2 questions is because I posted one and then almost an hour later I realized I should have put the other one in and didn't think I should change the first. – Darryl Hein Oct 6 '08 at 5:53
How in the world does this question have 12,000 views? – ryeguy Oct 5 at 19:18
Because of this: google.com/search?q=jquery+add+table+row/… – Darryl Hein Oct 5 at 22:54
It's was a good question and even better answer :D – c0mrade Oct 22 at 12:06

7 Answers

vote up 24 vote down check

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>');
link|flag
4  
Does this work if there are no rows in the table? – Rama Vadakattu Apr 30 at 4:47
@Rama, no it won't. There needs to be a better solution. – Brian Liang Jun 22 at 14:21
2  
I accept this, but the OP did speak about adding an "additional row" which implies the table already contains other rows, so I'm not sure you'd need to modify the solution any more to answer this particular question. – Luke Jun 23 at 10:49
There will always be a tbody in the DOM. – eyelidlessness Oct 5 at 19:20
eyelidlessness (great name!) that's a good point and one I hadn't appreciated. I am updating my answer in light of this. – Luke Oct 6 at 7:53
vote up 0 vote down

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):

... ... ...

etc ...

and then :

$('#traffic tbody').find('tr.trafficBody' + idx).after(html);

link|flag
Missing HTML is <tr id="row1"> </tr> <tr id="row2"> </tr> so on .. – Avron Olshewsky Oct 5 at 19:18
I think this should be a new question, instead of an answer to an existing one... – Darryl Hein Oct 5 at 19:35
vote up 2 vote down

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.

link|flag
vote up 0 vote down

How about when we add another features like having a datepicker to the input field in that table cell? Mine is not working currently... I use jquery.tables and jquery.datepicker in the same table... any help?

link|flag
vote up 1 vote down

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'));
link|flag
I can't see that being terribly useful. All it does is add an empty table row to a table. Typically, if not always, you want to add a new table row with some data in it. – Darryl Hein Mar 2 at 17:48
But that is usually what you want. This function lets you add en empty row to any of your tables, no matter how many columns and row spans you have, thus making it UNIVERSAL function. You can carry on from there for example with $('.tbl tr:last td'). The whole point is to have universal function!!! – Uzbekjon Mar 4 at 4:15
If your function also adds data into your new rows, you will not be able to use it the next time on your next project. What is the point?! It is in my opinion though, you don't need to share it... – Uzbekjon Mar 4 at 4:19
vote up 8 vote down

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>");
link|flag
1  
You have implemented your tfoot incorrectly. It should come before the tbody, not after - see w3.org/TR/html4/…. Therefore my solution still works unless you choose to break the standards (in which case you can expect other things to go wrong as well). My solution also works whether you have a tbody or not, whereas your proposal will fail if a tbody is not present. – Luke Jun 23 at 10:24
1  
Despite any mistakes in the <tfoot />, this is a better solution. If there is no <tbody /> you can use the same technique on the <table /> itself. Whereas the "accepted answer" requires an additional check to see whether or not there is an existing row. (I know the OP didn't specify this requirement, but it doesn't matter -- this post comes up 1st on a Google search for this technique, and the best answer is not the top.) – Clever Human Jul 13 at 14:49
vote up 1 vote down

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)?

link|flag
That should work. You can add as much you want. – Eikern Oct 4 '08 at 21:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.