insertRow vs. appendChild - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T02:59:15Z http://stackoverflow.com/feeds/question/879563 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/879563/insertrow-vs-appendchild 3 insertRow vs. appendChild erikkallen 2009-05-18T20:12:42Z 2009-05-18T22:19:52Z <p>Which method is preferred for adding a row to a table?</p> <p>var tr = tbl.insertRow(-1);</p> <p>or</p> <p>var tr = document.createElement('tr'); tbl.appendChild(tr);</p> <p>?</p> http://stackoverflow.com/questions/879563/insertrow-vs-appendchild/879588#879588 3 Answer by aleemb for insertRow vs. appendChild aleemb 2009-05-18T20:17:42Z 2009-05-18T20:17:42Z <p><code>insertRow</code> would be the much better. It is <a href="http://www.quirksmode.org/dom/w3c%5Fhtml.html" rel="nofollow">supported</a> by grade A browsers and it's less verbose and a cleaner API.</p> http://stackoverflow.com/questions/879563/insertrow-vs-appendchild/879634#879634 1 Answer by J-P for insertRow vs. appendChild J-P 2009-05-18T20:28:54Z 2009-05-18T20:28:54Z <p><code>insertRow</code> might be argued as more reliable since it's DOM[1].</p> <p>The <code>appendChild</code> method is consistently faster (albeit marginally) across all tested browsers (IE6/7, FF3, Chrome2, Opera9) when operating <em>outside</em> of the DOM, but when trying to modify tables within the document (a more common endeavour) it's <strong>significantly slower</strong>.</p> <p>In other words: definitely use <code>insertRow</code>.</p> <p><hr /></p> <p>These tests were performed locally so may not be reliable, see the source here: <a href="http://pastie.org/482023" rel="nofollow">http://pastie.org/482023</a></p> http://stackoverflow.com/questions/879563/insertrow-vs-appendchild/880103#880103 0 Answer by kennebec for insertRow vs. appendChild kennebec 2009-05-18T22:19:52Z 2009-05-18T22:19:52Z <p>If you do use dom methods, a tr should be appended to a tbody, thead, or tfoot element, and not to a table element.</p>