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);
?
|
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); ?
|
||
|
|
|
|
|
||||||
|
|
|
If you do use dom methods, a tr should be appended to a tbody, thead, or tfoot element, and not to a table element. |
||
|
|
|
|
The In other words: definitely use These tests were performed locally so may not be reliable, see the source here: http://pastie.org/482023 |
||
|
|