Archive
Welcome to the beta of the new saila.com. Send in your bugs.
Dispatches from 2005
Posted on August 17
-
Why doesn’t Internet Explorer add a table using appendChild?
Adding a table using the DOM is relatively easy — all you need to do is dynamically create the needed TD (and/or TH), TR, TBODY (and/or TFOOT and/or THEAD), and TABLE nodes using createElement. The you add each child to its parent using appendChild.