Forum Moderators: open
I have One main page consisting of some floating tables. One small one for Nav, one Big one for main body, and one medium sized one for Picture viewing. Now the nav bar links to the iframe on the main table. This Iframe has a list of thumbnails of pictures to be viewed. It was supposed to work that when you click on one of those thumbnails in that iframe, it would load a description in another iframe on the main page(parent page I guess), and also a Picture on a secondary Iframe also on the main page. All three Iframes are on the main page. But for the life of me I CANNOT get the links in the first iframe to target the other iframes. Forget the fact that I'm trying to load two frames at once.. I know you can do this with java... but for now can somone tell me how I can get the links within the first iframe to affect the other iframes on the parent page. thanks in advance.
And no I cannot use normal frames for this becuase of the visual makeup of the page.
in iframe1's page:
<a href = "javascript: change_iframe_content('iframe2src', 'iframe3src')">change me</a>
function change_iframe_content(val1, val2)
{
parent.iframe2.location = val1;
parent.iframe3.location = val2;
}