Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
Why didn't you check the jQuery API first before questioning? Everything is explained very well there. – Thariama Jun 22 '10 at 6:18
Actually I've read the documentation, but I'm working on a project where page memory reach 150 Mb, I used empty... =) – mabuzer Jun 22 '10 at 6:25

3 Answers

up vote 30 down vote accepted
  • Empty will remove all the contents of the selection.
  • Remove will remove the selection and its contents.

Consider:

<div>
    <p><strong>foo</strong></p>
</div>

$('p').empty();  // --> "<div><p></p></div>"

// whereas,
$('p').remove(); // --> "<div></div>"

Both of them remove the DOM objects and should release the memory they take up, yes.

share|improve this answer

The documentation explains it very well. It also contains examples:

before:

<div class="container">
  <div class="hello">Hello</div>
  <div class="goodbye">Goodbye</div>
</div>

.remove():

$('.hello').remove();

after:

<div class="container">
  <div class="goodbye">Goodbye</div>
</div>

before:

<div class="container">
  <div class="hello">Hello</div>
  <div class="goodbye">Goodbye</div>
</div>

.empty():

$('.hello').empty();

after:

<div class="container">
  <div class="hello"></div>
  <div class="goodbye">Goodbye</div>
</div>

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.

share|improve this answer
Great answer... thnx :) – Bhupi Jul 29 '11 at 6:36

The empty() method will clear all child nodes from the matched elements. However those matched elements will remain in DOM. The remove() method removes the matched elements from DOM.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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