Hi,
I need to add dynamically ~1000 rows to a table. I get the rows using
AJAX call.
If I try to insert rows in a convention way (document.createElement for each tbody, tr and td) it takes almost 1.5 min. (Must use IE...)
I would like to know if there is a way that can append all the rows from the
XML directly to the existing table.
I already tried innerHTML with no success.
