Click to See Complete Forum and Search --> : IFrames? Help! =(


angela86
02-16-2003, 03:48 AM
Hey:) This is probably really stupid to ask but okay...
I put blog.htm in an iframe on my main page(index.html)

Is there a way I could go from blog.htm to pictures.html or links.html in the same iframe?

-Angela

Stefan
02-16-2003, 05:01 AM
Originally posted by angela86
Is there a way I could go from blog.htm to pictures.html or links.html in the same iframe?


put this in blog.html
<a href="pictures.html">pics</a>

Zach Elfers
02-16-2003, 12:19 PM
To target links to the iframe, you need to name your iframe.

<iframe width="w" height="h" src="blog.htm" name="iframe-name"></iframe>

Now to link to it, you put <a href="pictures.htm" target="iframe-name">Pictures</a>