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.
|
|
For example if I have a link with the following event bound to it:
And later do:
Is that fine? Or does it cause a memory leak and I need to call unbind 1st? Thanks for any help. |
|||
|
|
|
|
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! |
||||||||
|
|
|
From jQuery docs for remove()
|
||
|
|
|
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:
should be written as
to avoid losing the event handlers. |
|||
|
|