| Page 1 of 1 | [ 3 posts ] |
|
I'm cloning table tag only (<table> with attributes, classes, id only; no rows) and then trying to clone and append the first row as well. Works as expected in all browsers except IE (currently testing in IE8). In IE the innerHTML of the #container that holds the new table looks correct (in logs), but for some reason nothing in the #container is getting rendered on screen.
What am I missing? Thanks! YUI table cloneNode append IE FailClick here to see the revision history on this Gist.. |
|
If memory serves, you need to add a TBODY to a dynamic table in IE:
Code: <table> <tbody> <tr> <td></td> </tr> </tbody> </table> |
|
That worked like a charm. Adding <tbody> to the cloned table resulted in IE rendering properly. Thanks Dav!
|
| Page 1 of 1 | [ 3 posts ] |
| You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum |
© 2006-2013 Yahoo! Inc. All rights reserved.
All code on this site is licensed under the BSD License unless stated otherwise.
About This Site · Security Contact Info
Powered by phpBB® Forum Software © phpBB Group