Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

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?!