Is it possible to remove a dom element that has no parent other than the body tag? I know this would be easy with a framework like jquery, but I'm trying to stick to straight javascript.

Here's the code I've found to do it otherwise:

function removeElement(parentDiv, childDiv){
	 if (childDiv == parentDiv) {
		  alert("The parent div cannot be removed.");
	 }
	 else if (document.getElementById(childDiv)) {     
		  var child = document.getElementById(childDiv);
		  var parent = document.getElementById(parentDiv);
		  parent.removeChild(child);
	 }
	 else {
		  alert("Child div has already been removed or does not exist.");
		  return false;
	 }
}

Thanks!

link|improve this question

FYI body is a perfectly valid parent. – Crescent Fresh Nov 26 '09 at 18:19
feedback

3 Answers

up vote 1 down vote accepted
document.body.removeChild(child);
link|improve this answer
@unknown: this answer only works for nodes that are immediate descendants of document.body. The other answers work for all cases, including descendants of document.body. – Crescent Fresh Nov 26 '09 at 18:21
As above, this answer only works on elements that are immediate descendants of body. Can someone moderate this? – adam Nov 27 '09 at 12:22
read the question: «a dom element that has no parent other than the body tag», so my response is perfectly valable – Gregoire Nov 27 '09 at 14:04
Apologies, I think the original question has been edited – adam Nov 27 '09 at 23:17
feedback

You should be able to get the parent of the element, then remove the element from that

function removeElement(el) {
el.parentNode.removeChild(el);
}
link|improve this answer
feedback

I think you can do something like...

              var child = document.getElementById(childDiv);
              //var parent = document.getElementById(parentDiv);
              child.parentNode.removeChild(child);

See node.parentNode for more info on that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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