vote up 1 vote down star
1

How can I grab a div from an iframe into a JS variable? Doesn't necessarily have to use jQuery.

flag

2 Answers

vote up 8 vote down check
document.getElementById('IframeId').contentWindow.document.getElementById('DivId');
link|flag
Excellent answer +1 – José Basilio May 7 at 18:48
4  
Just remember that this (or any other method) won't work cross domain because of security restrictions – Mike Robinson May 7 at 18:54
vote up 9 vote down

In jQuery syntax, that would be $('iframe').contents().find('div'). (Substitute any specific ids/classes/other selectors you need, of course). Tracker1's answer should work fine for standard Javascript.

link|flag
The jQuery approach +1 – José Basilio May 7 at 18:53

Your Answer

Get an OpenID
or

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