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

could someone help me to understand why this errors

document.getElementById("actContentToGet").contentWindow.document.body.getElementById is not a function

function deleteElement(element){
		var elementID = $(element).attr("class");
		alert(elementID);
		document.getElementById('actContentToGet').contentWindow.document.body.getElementById(elementID).remove;
		alterContent();
		giveAllIDs();
		hoverLoad();
	}
share|improve this question

2 Answers

up vote 9 down vote accepted

Try changing this:

...contentWindow.document.body.getElementById(elementID)...

to this:

...contentWindow.document.getElementById(elementID)...


Edit from comments: It's not removing that element because that's not how you remove elements. Try this:

var iframe = document.getElementById('actContentToGet');
var frameDoc = iframe.contentDocument || iframe.contentWindow.document;
var el = frameDoc.getElementById(elementID);
el.parentNode.removeChild(el);

See the documentation here.

share|improve this answer
That seems to be getting the element object but is not removing it.. any ideas why? document.getElementById('actContentToGet').contentWindow.document.getElementById‌​(elementID).remove; – Phil Jackson Dec 13 '09 at 12:40
editing the answer... – nickf Dec 13 '09 at 12:55
Your a star thank you!!! – Phil Jackson Dec 13 '09 at 13:01
contentWindow is a non-standard IE extension. For compatibility use: var idoc= iframe.contentDocument || iframe.contentWindow.document. – bobince Dec 13 '09 at 15:03
thanks bobince, that's been added to the answer now. – nickf Dec 13 '09 at 15:08

Try removing the body.- getElementById() is a document. function.

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.