Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. thatts

    Memory leak on adding Form to a DOM node

    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 =...
  2. thatts

    Insert rows dynamically in a table

    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
  3. thatts

    Insert rows dynamically in a table

    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 =...

Part and Inventory Search

Back
Top