Hi everyone, Here is a problem that I have. In the page I call Iframe through Javascript (have to because of tracker). <div id="gads1"></div> document.getElementById('gads1').innerHTML ="<iframe name='google_ads_frame' id='google_ads_frame' src='http://mysite.com/iframe_file.htm'></iframe>"; that file contains javascript giving 2 variables. I need each of those 2 variables to be written out in a separate DIV layers on the parent page. How can I access the variables in the iframe document to write out in separate places in the main (parent) document? if it was ordinary Iframe - no problem. But this is javascript calling IFrame and the usual approach doesn't work. I appreciate any suggestions. ~Drazen
If you are saying that the iframe isn't addressable, it will be because it was generated using innerHTML. Try creating it using DOM functions.