Click to See Complete Forum and Search --> : Linking To Iframe


grantdog
11-03-2007, 03:27 AM
Hi guys,
i have a webpage and basically it has a banner at the top, buttons down the side and the majority of the page in the centre is an "IFRAME" external webpage which is a webcart.
basically im not sure how to go about linking my buttons on the side to the main external page. so that each button can link to a new product catagory on the external page (in the iframe) while not having to load a new page.

Is this even possible or am i just better off duplicating the page and setting the IFrame link to its product?

thanks

grantdog
11-04-2007, 01:36 AM
ok so i finally got it sorted. For all out there that are interested. this is how you do it.
make sure you iframe has a name.. lets just call it "iframe"
then in your code put it like this.

<a href="external_web_page.html", "target="iframe">


href being the link to the actual external site, and the target telling it to be opened in that iframe window.

hope some one finds this usefull