IFrames? Help! =(

liunx

Guest
Hey:) This is probably really stupid to ask but okay...<br />
I put blog.htm in an iframe on my main page(index.html)<br />
<br />
Is there a way I could go from blog.htm to pictures.html or links.html in the same iframe?<br />
<br />
-Angela<!--content-->Originally posted by angela86 <br />
Is there a way I could go from blog.htm to pictures.html or links.html in the same iframe?<br />
<br />
<br />
put this in blog.html<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"pictures.html">pics</a><!--content-->To target links to the iframe, you need to name your iframe.<br />
<br />
<iframe width="w" height="h" src=http://www.webdeveloper.com/forum/archive/index.php/"blog.htm" name="iframe-name"></iframe><br />
<br />
Now to link to it, you put <a href=http://www.webdeveloper.com/forum/archive/index.php/"pictures.htm" target="iframe-name">Pictures</a><!--content-->
 
Back
Top