Forum Moderators: open
ok, my question is this: on my "index.html" i have an iframe that diplays "content.html". how would i buld a link on my index.html that changes the content in my iframe.
i immagine that i would have to name the table that contains the iframe and point to that in the link, but so far i have been unable to do this successfully.
thanks in advance for any help.
give your iframe a name (eg name="DisplayArea")
Create a link in your main page that uses DisplayArea as the target.
eg <a href="moreinfo.htm" target="DisplayArea">Click here for more info!</a>
Careful - I think the iframe name is case sensitive.
Antony
ive got it figured out now...i new as soon as i asked someone i would find the problem...and i did..
now ive got an additional question. is there any way to make one link change the content in two seperate iframes at one time.
for instance. on my index page i have two i frames, one contains a subnavigation, and the other contains content. i would like for a link on my index page to change the content in both the subnav iframe as well as the content iframe. is this possible?
hope this is a little more understandable.
again, thanks in advance