Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Javascript] IE: tbody and innerHTML
- From: list at tridemail.de (Michael Borchers)
- Subject: [Javascript] IE: tbody and innerHTML
- Date: Fri Jan 19 08:48:22 2007
my script successfully creates an element TBODY
var offersProductsTbody = document.createElement("TBODY");
offersProductsTbody.id = offersProductsRowID;
offersProductsTable.appendChild(offersProductsTbody);
document.getElementById(offersProductsRowID).innerHTML =
'<tr><td>test</td></tr>';
everything works fine when inserting HTML in FF,
but as I understand, IE cannot use the innerHTML method
for writing in <tbody>.
since the table is very big I cannot recreate it by DOM,
it would be too much work.
Any workaround?!
- Follow-Ups:
- [Javascript] IE: tbody and innerHTML
- From: Aaron Bassett
- [Javascript] IE: tbody and innerHTML
- Prev by Date: [Javascript] Monitor an offsetHeight value
- Next by Date: [Javascript] IE: tbody and innerHTML
- Previous by thread: [Javascript] How to scroll an iframe
- Next by thread: [Javascript] IE: tbody and innerHTML
- Index(es):