ajaxian経由:http://ajaxian.com/archives/is-finally-the-answer-to-all-ie6-memory-leak-issues http://www.hedgerwow.com/360/dhtml/ie6_memory_leak_fix/ try ... finallyを使って循環参照を削除する方法。 windowのunloadとかに頼らないで済む所がかっこいい。 function createButton() { var obj = document.createElement("button"); obj.innerHTML = "click me"; obj.onclick = function() { //handle onclick } //this helps to fix the memory leak issue try