I think it would be more important to see the XML he is trying to load.
As his code is written, it makes no sense:
First, this line:
Code:
x=xmlhttp.responseXML.documentElement.getElementsByTagName("<TD>");
will get *ALL* the <TD> elements into the collection referenced by x.
But then this line
Code:
xx=x[i].getElementsByTagName("<TD>")
gets all the <TD> elements *INSIDE* of one of the <TD>s.
Now, I grant you that is possible.
XML such as:
Code:
<TD>
<TD>something</TD>
</TD>
<TD>
<TD>more stuff</TD>
</TD>
would allow that. But is that LIKELY?
I want to see the XML.