When I try to get the contentwindow out of an iframe, using

var contentWindow = document.getElementbyId('iframe').contentWindow 

sometimes it returns "Window undefined" because the contentWindow doesn't exist. I can't seem to run a check for it using

if (contentWindow === unidentified) or if (contentWindow === null)

as it just errors out of the code if I try to grab values out of it. Has anyone else run into this problem and figured out a solution?

link|improve this question
feedback

3 Answers

Are you typing it properly? getElementByID not getElementbyId. Did you confirm that that returns an element before querying contentWindow? Are you querying it after it loads?

Are you doing gEBI after DOM ready or page load? Did you throw in alerts on the element? Is the domain in the iframe the same as the origin domain? What browser are you using?

if (contentWindow === unidentified) or if (contentWindow === null)

There is no such thing as unidentified it's undefined. Slow down and be accurate.

link|improve this answer
+1 for your sharp eyes... – Wasim Karani Jan 22 '11 at 2:57
feedback

Try this

var iframeElem = parent.document.getElementById("iframe");
var win = iframeElem.contentWindow;
link|improve this answer
feedback
var iframeElem = parent.document.getElementById("iframe");
var win = iframeElem.contentWindow;

Using this, win has a value of "Window undefined" when I debug it in Firebug. It gets the iframe fine, I just can't seem to run a check to see if win is undefined or null.

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.