What's the difference between empty() and remove()methods in JQuery, and when we call any of these methods, the objects being created will be destroyed and memory released?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
Consider:
Both of them remove the DOM objects and should release the memory they take up, yes. |
|||
|
|
|
The documentation explains it very well. It also contains examples: before:
.remove():
after:
before:
.empty():
after:
As far as memory is concerned, once an element is removed from the DOM and there are no more references to it the garbage collector will reclaim the memory when it runs. |
|||
|
|
|
The |
|||
|
|