From: Aston C. <AC...@al...> - 2004-01-16 16:51:48
|
Hi, If you include the following code in the subTabFrame1.html, then the IE memory will be very stable when you click on and off the sub tabs. Looks like we need to add document.write("") and document.close(); in order to free up IE memory. -Aston --------------------------------------------- function cleanup() { // need these cleanups or else, IE memory keeps going up tabControl.cleanup(); dynapi.document.removeAllEventListeners(); dynapi.document.destroyAllChildren(); dynapi.document._destroy(); delete dynapi document.write(""); document.close(); } |