vote up 1 vote down star

Javascript client side application.

Trying to eliminate memory leaks leads to ugly (to say the least) code.

I am trying to clean up in window.unload instead on messing up all the code trying to avoid them.

We use mostly element.onevent=function(){..}; pattern, that results in closure (mostly wanted) and memory leak.

We do not use javascript frameworks.

Are there any ideas on how to clean up properly on exit?

Has anyone do the same or are you trying to avoid them?

flag

50% accept rate

3 Answers

vote up 0 vote down

I'm not sure what you mean with cleanup as JavaScript has an automatic memory management. But anyway, as I understand, after the window is unloaded, all the memory associated with JS is released as well. After all - there is no more JS executing from a page after it has unloaded, right?

link|flag
sorry, no! There are two GC (javascript & DOM). Work independently. If you connect javascript & DOM objects (we do it all the time) leak happens. – pkario Dec 4 '08 at 9:07
vote up 0 vote down

From most of my investigations into this, there is no good way of doing this.. each individual browser has it's own implementation of garbage collection.

Firefox is not so bad, but IE6 for instance is terrible.. try and create anything over 60 objects and IE6 will become very sluggish.

Just one of those things, I've come to accept.

link|flag
vote up 1 vote down

A solution for avoiding memory leaks with events is delegation. In a nutshell, you attach your event handler to a parent object instead of the children. Because of propagation, a click on a child will also register as a click on the parent, triggering your handler. By checking the target attribute of the event, you can then decide what to do with it.

Since the handler is attached to the parent, you can add or remove children without worrying about leaks.

A more thorough explanation can be found here: http://www.robertnyman.com/2008/05/04/event-delegation-with-javascript/

A demo here: http://www.robertnyman.com/test/event-delegation/event-delegation.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.