Linking Iframes from an IFrame

Joined
Nov 22, 2007
Messages
1
Reaction score
0
I just learned how to make Iframes and now I've run into a bit of a poser for myself and I thought this would be a good place to ask.

How do you manage to insert seperate links from a keymap into different Iframes without having to change the entire page?

Currently I'm using Dreamweaver 8 with a hopeful upgrade to the entire Adobe/Dreamweaver package for CS3 once my holiday bonuses are here. yay for new toys, right?

Any help would be appreciated, since I'm self taught there are large holes in my knowledge of how to use this program so it might be helpful to "dummy" it down for me to understand. ;)

Thanks!
 
Hello and welcome to the site :)

Be sure to give your iframes a name, like so:

HTML:
<iframe name="test"></iframe>

and then when you want a link to open in that iframe, use the target variable in the link:

HTML:
<a href="http://www.yahoo.com" target="test">

:thumb:
 
Back
Top