Can someone help me out with this? I have two pages set up:
1) main.htm (home page), and
2) fy04/index.htm (contains iframe)
Index.htm has an iframe with the following code:
<iframe name="cwindow" style="border:5px ridge white" width=350 height=350 src="header.htm"></iframe>
This index.htm page is set up as a table. The left side has eight links listed and the right side is the iframe that the links open into. The src = "header.htm" is just a static info page that loads when the page is opened. When you click on link1.htm it opens up in the iframe. Same with link2 through link8 using <a href="link#.htm" target="cwindow">
These same eight links are also listed on my main.htm page. I want to have each of those links go to the index.htm page and open their respective file in the iframe. I'm not sure how to set up the link on the main.htm page. Link 1 needs to go to fy04/index.htm, then open link1 in the iframe. Can anyone tell me how to do this?
1) main.htm (home page), and
2) fy04/index.htm (contains iframe)
Index.htm has an iframe with the following code:
<iframe name="cwindow" style="border:5px ridge white" width=350 height=350 src="header.htm"></iframe>
This index.htm page is set up as a table. The left side has eight links listed and the right side is the iframe that the links open into. The src = "header.htm" is just a static info page that loads when the page is opened. When you click on link1.htm it opens up in the iframe. Same with link2 through link8 using <a href="link#.htm" target="cwindow">
These same eight links are also listed on my main.htm page. I want to have each of those links go to the index.htm page and open their respective file in the iframe. I'm not sure how to set up the link on the main.htm page. Link 1 needs to go to fy04/index.htm, then open link1 in the iframe. Can anyone tell me how to do this?
Comment