vote up 3 vote down star
1

Which method is preferred for adding a row to a table?

var tr = tbl.insertRow(-1);

or

var tr = document.createElement('tr'); tbl.appendChild(tr);

?

flag

66% accept rate

3 Answers

vote up 3 vote down check

insertRow would be the much better. It is supported by grade A browsers and it's less verbose and a cleaner API.

link|flag
Also, rows are not always children of table anyway, which makes the appendChild method more complex. – Rex M May 18 at 20:20
@rex: what do you mean? – erikkallen May 18 at 20:25
<tr> may be a child of a <tbody>, rather than a <table> element. – Rob May 18 at 20:42
vote up 0 vote down

If you do use dom methods, a tr should be appended to a tbody, thead, or tfoot element, and not to a table element.

link|flag
vote up 1 vote down

insertRow might be argued as more reliable since it's DOM[1].

The appendChild method is consistently faster (albeit marginally) across all tested browsers (IE6/7, FF3, Chrome2, Opera9) when operating outside of the DOM, but when trying to modify tables within the document (a more common endeavour) it's significantly slower.

In other words: definitely use insertRow.


These tests were performed locally so may not be reliable, see the source here: http://pastie.org/482023

link|flag

Your Answer

Get an OpenID
or

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