- I have a page A containing 2 children iFrames called B and C.
- A and B are on different domains.
- On pressing a button in B I would like to change C’s URL.
Based on the law III of Michael Mahemoff it should work, but in fact it doesn’t (js security error).
Here is the JS code in B:
window.parent.frames['C'].location.href = "http://random.url";
This does not work because frame B cannot access the
framescollection in page A.I cannot think of any workaround (other than setting
document.domain)