vote up 4 vote down star

Is there some function like: document.getElementById("FirstDiv").clear() ?

flag

5 Answers

vote up 6 vote down check

To answer the original question - there are various ways to do this, but the following would be the simplest.

If you already have a handle to the child node that you want to remove, i.e. you have a JavaScript variable that holds a reference to it:

myChildNode.parentNode.removeChild(myChildNode);

Obviously, if you are not using one of the numerous libraries that already do this, you would want to create a function to abstract this out:

function removeElement(node) {
    node.parentNode.removeChild(node);
}


EDIT: As has been mentioned by others: if you have any event handlers wired up to the node you are removing, you will want to make sure you disconnect those before the last reference to the node being removed goes out of scope, lest poor implementations of the JavaScript interpreter leak memory.

link|flag
vote up 5 vote down

If you want to clear the div and remove all child nodes, you could put:

mydiv = document.getElementById('FirstDiv');
while ( mydiv.firstChild ) mydiv.removeChild( mydiv.firstChild );
link|flag
I think it is funny that this has been upvoted so many times - it does not really answer the main question but assumes that the questioner's example is the end goal, when it may be nothing more than just that - an example. – Jason Bunting Sep 16 '08 at 5:53
vote up 2 vote down

You should probably use a JavaScript library to do things like this.

For example, MochiKit has a function removeElement, and jQuery has remove.

link|flag
vote up 2 vote down

You have to remove any event handlers you've set on the node before you remove it, to avoid memory leaks in IE

link|flag
vote up 1 vote down

You should be able to use the .RemoveNode method of the node or the .RemoveChild method of the parent node.

link|flag

Your Answer

Get an OpenID
or

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