Frames, I frames and links to them.

liunx

Guest
Hello.<br />
<br />
I have an ambitious plan. I would like an image to be displayed within an iframe, within a frame, linked to another frame. My code so far might help.....<br />
<br />
page= "celebflash.htm"<br />
<html><br />
<head...../head><br />
<body><br />
<frameset rows="12%,*" framespacing="0" border="0" frameborder="0"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"celebs.htm" name="header" scrolling=false><br />
<frameset cols="30%,*" framespacing="0" border="0" frameborder="0"><br />
<frameset rows="40%,60%" framespacing="0" border="0" frameborder="0"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"topcelebs.htm" name="current" scrolling=false><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"teamcelebs.htm" name="team" scrolling="auto"><br />
</frameset><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"submitcelebs.htm" name="detail" scrolling=false><br />
</frameset><br />
</framset><br />
<br />
page="iframe.htm"<br />
<body><br />
<iframe src=http://www.webdeveloper.com/forum/archive/index.php/"blank.htm" name="__image" frameborder="0" scrolling="no" align="middle"><br />
</iframe><br />
</center><br />
</body><br />
</html><br />
<br />
Within "teamcelebs.htm" i want this link......<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"Fives/test1.jpg" target="Fives/iframe.htm#_image">Christina Aguilera</a><br />
<br />
What I get is the image been displayed in a new window.<br />
<br />
Can anyone make any suggestions?<!--content-->try changing the target to just the name of the iframe. (without the path)<!--content-->
 
Back
Top