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] Not being displayed in IE


  • From: eldebaran at gmail.com (Julien Royer)
  • Subject: [Javascript] Not being displayed in IE
  • Date: Fri Dec 15 04:44:00 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@xxxxxxxxxxxxxx> 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