vote up 3 vote down star

For example if I have a link with the following event bound to it:

$("a.d").bind("click", this, onDelete);

And later do:

$("a.d").remove();

Is that fine? Or does it cause a memory leak and I need to call unbind 1st?

Thanks for any help.

flag

3 Answers

vote up -2 vote down

For the record, you need not worry about memory leaks in javascript. (chill man, not c++!)

The browser's javascript engine manages all objects, and garbage collects them. When I say objects, that means event-handling-functions too, because functions are also objects in javascript.

Unrelated: I love how everything is an object in javascript :D

Cheers!
jrh

link|flag
Not true actually, you can very easily create memory leaks in javascript if you create closures. Poor event management is one place where memory leaks are common. Certain js engines are better than others, for example, Chrome's V8 seems to garbage collect the closures properly. However, Firefox (at least 3.0, haven't tried it with 3.5), and IE can and do have memory leaks in javascript. – TM Oct 8 at 15:10
FYI the reason I know this is because I've run into it before (I even asked about it on SO, see this old question of mine: stackoverflow.com/questions/276087/…) – TM Oct 8 at 15:12
-1 It may not be C++ but it certainly can leak memory! – Josh Stodola Oct 8 at 17:15
Hmm.. thanks for the info guys – harshath.jr Oct 9 at 2:47
vote up 5 vote down

From jQuery docs for remove()

Removes all matched elements from the DOM. This does NOT remove them from the jQuery object, allowing you to use the matched elements further. Note that this function starting with 1.2.2 will also remove all event handlers and internally cached data.

link|flag
+1 for "insider info" :) – harshath.jr Oct 8 at 15:08
vote up 3 vote down

I haven't tested it, but I believe that removing an element will unbind its event handlers. I come to this conclusion from the jQuery API documentation (search for remove) which states that if you want to move an element from one part of the DOM to another that:

$("#foo").remove().appendTo("#bar");

should be written as

$("#foo").appendTo("#bar");

to avoid losing the event handlers.

link|flag

Your Answer

Get an OpenID
or

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