id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
442,"When appending a tbody to a table, the automatic tbody creation should not occur",norbertuco@…,,"I have a table with a thead that does not change and a tbody whose content varies. Each time I refresh the contents of the table, I append the new tr's and td's into a tbody element and append the new tbody element to the table. Unfortunately, when I append the tbody to the table, I get the following:

<table>

    <thead>...Constant Content...</thead>

    <tbody>

        <tbody>...Refreshed Content...</tbody>

    </tbody>

</table>

I have changed the following line in the domManip function in order to stop the extra tbody from being appended:

From:
---------
if ( table && this.nodeName.toUpperCase() == ""TABLE"" && a[0].nodeName.toUpperCase() != ""THEAD"" ) {
---------
To:
---------
if ( table && this.nodeName.toUpperCase() == ""TABLE"" && a[0].nodeName.toUpperCase() != ""THEAD"" && a[0].nodeName.toUpperCase() != ""TBODY"" ) {
---------
This way I don't get any extra tbody's in my dom.",bug,closed,major,1.1a,core,,duplicate,"table, tbody, append",,,
