Hi,
I dynamically add and remove rows to my table using DOM APIs. Inside one of the cells in the table I have a FORM.
Now I see IE leaks the memory as time goes on, is there any way to force IE to garbage collect.
HEre is the sample code for adding
var tbl =...
I have existing code that pushes (ajax) row by row information to the client. So I have to parse and split the cells before inserting it in the table. If I could directly replace the rows, it would be less over head.
Thanks
_pete
Hi,
I need to insert rows dynamically in a table. I know I can do that with
following code.
var tbl = document.getElementById('tblSample');
var lastRow = tbl.rows.length;
var row = tbl.insertRow(lastRow);
// left cell
var cellLeft = row.insertCell(0);
textNode =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.