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

I am trying to get a div from within an iframe and print it on my page. Any Ideas ?

share|improve this question

1 Answer

up vote 67 down vote accepted
var iframe = document.getElementById('iframeId');
var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;

You could more simply write:

var iframe = document.getElementById('iframeId');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document;

and the first valid inner doc will be returned.

Once you get the inner doc, you can just access its internals the same way as you would access any element on your current page. (innerDoc.getElementById...etc.)

Make sure that the iframe is on the same domain, otherwise you can't get access to its internals. That would be cross-site scripting.

share|improve this answer
Great answer. Did you know that you can do: var innerDoc = iframe.contentDocument || iframe.contentWindow.document; //more readable and means the same – David Caunt Jul 6 '09 at 18:40
yeah, i did know about that. – geowa4 Jul 6 '09 at 18:42
2  
I've seen people confused by that more than ternary operators. They seem to not know that the first valid one is returned. – geowa4 Jul 6 '09 at 18:44
1  
in fact, as i edited the answer to include it, the guy over my shoulder asked me what that did... – geowa4 Jul 6 '09 at 18:46
3  
Probably better to educate than use more complex code for simplicity :) – David Caunt Jul 7 '09 at 11:28
show 3 more comments

protected by Community Nov 26 '12 at 8:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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