[Javascript] Not being displayed in IE

Julien Royer eldebaran at gmail.com
Fri Dec 15 04:43:46 CST 2006


There is an implicit tbody element in the DOM (except if the document
is served as application/xhtml+xml), no need to create one in the HTML
page.

You can access it with the HTML DOM : "table.tBodies[0]".

http://www.quirksmode.org/dom/w3c_html.html

On 12/15/06, M <lists at gazelasport.sk> wrote:
> IE requires <tbody> element. Create it inside the table, give id
> "summary_table" instead of the table:
>
> <table>
>  <tbody id="summary_table">
>  </tbody>
> </table>
>
> This will work in all



More information about the Javascript mailing list