Skip to content Skip to sidebar Skip to footer

Reloading Iframe From Another Iframe

Can I reload iframe (say __tree_iframe) from another child iframe (__content_iframe)? Difficulty: IE6/7. UPDATE Obviosly I should use window.opener and find iframe using it iframes

Solution 1:

If you have trouble accessing the iframe in the parent frame, best give it an ID. Then it should be possible to do a

parent.getElementById("frameid").location.reload()

if both parent, child and sibling are in the same domain.

Post a Comment for "Reloading Iframe From Another Iframe"