Hello Folks!

Ive recently read some Articles about Javascript/DOM GC CleanUp Problems when doing operations like
Code:
 
var Obj = createElement("TD");
Obj.onclick = function() { myFunc(); };
document.body.appendChild(Obj);
.....
document.body.removeChild(Obj); //<- Leak because JS function still set
I work right now on a Ajax Grid Class that can have different...