How to access parent Iframe from JavaScript -
well, have iframe, calls same domain page. problem want access information parent iframe called page (from javascript). how can access iframe?
details: there several iframes one, can have same page loaded, because programming windows environment. intend close iframe, that's why need know should close inside him. have array keeping references these iframes.
edit: there iframes generated dynamically
also can set name , id equal values
<iframe id="frame1" name="frame1" src="any.html"></iframe>
so able use next code inside child page
parent.document.getelementbyid(window.name);
Comments
Post a Comment