Could you target the element above the table? rather than the tbody and then use innerHTML to write the complete table rather than just the &lt;tr&gt;&#39;s and &lt;td&gt;&#39;s??<br><br><br><br><div><span class="gmail_quote">
On 1/19/07, <b class="gmail_sendername">Michael Borchers</b> &lt;<a href="mailto:list@tridemail.de">list@tridemail.de</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
my script successfully creates an element TBODY<br><br>&nbsp;&nbsp;var offersProductsTbody = document.createElement(&quot;TBODY&quot;);<br>&nbsp;&nbsp;offersProductsTbody.id = offersProductsRowID;<br><br>&nbsp;&nbsp;offersProductsTable.appendChild(offersProductsTbody);
<br><br>&nbsp;&nbsp;document.getElementById(offersProductsRowID).innerHTML =<br>&#39;&lt;tr&gt;&lt;td&gt;test&lt;/td&gt;&lt;/tr&gt;&#39;;<br><br><br><br><br>everything works fine when inserting HTML in FF,<br>but as I understand, IE cannot use the innerHTML method
<br>for writing in &lt;tbody&gt;.<br><br>since the table is very big I cannot recreate it by DOM,<br>it would be too much work.<br><br>Any workaround?!<br><br>_______________________________________________<br>Javascript mailing list
<br><a href="mailto:Javascript@LaTech.edu">Javascript@LaTech.edu</a><br><a href="https://lists.LaTech.edu/mailman/listinfo/javascript">https://lists.LaTech.edu/mailman/listinfo/javascript</a><br></blockquote></div><br>