0
votes
How to clean up after using dojo ?
You're considering using "onunload", so I think you want to free memory when users are leaving the page.
Javascript objects are not shared from one page to another, leaving the HTML page sh …
3
votes
Javascript memory management pitfalls ?
From my experience, Garbage Collectors are well/poorly implemented depending on the browser. Applying good Object Oriented programming practices is a good start.
My only advice: do …
