insertRow vs. appendChild - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T02:59:15Zhttp://stackoverflow.com/feeds/question/879563http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/879563/insertrow-vs-appendchild3insertRow vs. appendChilderikkallen2009-05-18T20:12:42Z2009-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#8795883Answer by aleemb for insertRow vs. appendChildaleemb2009-05-18T20:17:42Z2009-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#8796341Answer by J-P for insertRow vs. appendChildJ-P2009-05-18T20:28:54Z2009-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#8801030Answer by kennebec for insertRow vs. appendChildkennebec2009-05-18T22:19:52Z2009-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>