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

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 property. Apparently, IE doesn't support window.opener. Any ideas about another way?

share|improve this question
IE does support window.opener, but that's for popup windows, not for iframes. – Marko Dumic Mar 19 '10 at 12:44

1 Answer

up vote 2 down vote accepted

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.

share|improve this answer
I think he wants to reload sibling iframe, not everything. – Marko Dumic Mar 19 '10 at 12:45
@Marko I see, good point. – Pekka 웃 Mar 19 '10 at 13:05

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.