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

Please forgive my poor use of the correct terminology here!

I have a page with nested iframe where I use jquery to traverse through to it - I can pull any element from the iframe and perform jquery functions on it.

Within the iframe's page, is a javascript variable. How can I access this variable?

cheers :)

share|improve this question
1  
Does the content of the iframe come from the same domain as that of the container page? – Salman A Apr 7 '11 at 9:07
not exacly what you are looking for - but close: stackoverflow.com/questions/4689145/… – Billy Moon Apr 7 '11 at 9:08

3 Answers

up vote 0 down vote accepted

See: Invoking javascript in iframe from parent page

share|improve this answer
perfect, cheers.. (and thanks to everyone else for the other responses).. I guess wanting to do the 'finding' through jQuery was a bit unnecessary. – Tabloo Quijico Apr 7 '11 at 9:38

If your iframes are hosted on the same domain you can access them from the window.frames array. Something so:

window.frames['myframename'].document.some_variable
share|improve this answer
Variable can be accessed through window object, not document. – Salman A Apr 7 '11 at 9:24

If same origin poilicy is not an issue, you can do a:

var foo_inside_iframe1 = document.getElementById("iframe1").contentWindow.foo;

This assumes that the document loaded inside iframe1 defines foo globally, e.g.:

var foo = "somehting";
window.foo = "somehting";

Demo here, code for outer page here, code for iframe here.

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.