Is this possible? I am creating a website that uses a template for the majority of the pages, but for some pages, it pulls external pages using iframe. My problem arises when I try to link from a non-frame page to the framed page and still pull the correct information into the iframe. Lets call my frameset page - 'frameset.html' with the iframe named 'iframe'.
I have a menu with links to both the non-frame and framed pages. If I am on the frameset.html this code works fine
I can then link to a non framed page by using this -
My problem arises, when I try to navigate back to the iframe. I somehow need to specify the frameset.html and iframe in order to maintain the appearence and not open it in a new window. Right now when I link back to iframe, it try to open that page in a new window.
Sorry if this is confusing.
Dodge20
I have a menu with links to both the non-frame and framed pages. If I am on the frameset.html this code works fine
Code:
mm_menu_0207134928_0_3.addMenuItem("Overview","window.open(' [URL unfurl="true"]http://www.external1.com/',[/URL] 'iframe');");
I can then link to a non framed page by using this -
Code:
mm_menu_0207134928_0.addMenuItem(mm_menu_0207134928_0_1,"window.open('default.asp', '_top');")
My problem arises, when I try to navigate back to the iframe. I somehow need to specify the frameset.html and iframe in order to maintain the appearence and not open it in a new window. Right now when I link back to iframe, it try to open that page in a new window.
Sorry if this is confusing.
Dodge20