How can i make a picture appear in another Frame?

liunx

Guest
Hello all,<br />
Would you be able to help me with a problem I have with HTML please?<br />
<br />
I have 2 webpages split in half on my screen by a frame and this is the code I am using for it;<br />
<br />
<HTML> <br />
<TITLE>First Frame Page</TITLE><br />
<br />
<FRAMESET COLS="50%,50%"><br />
<FRAME SRC=http://www.htmlforums.com/archive/index.php/"PAGE_A.htm"><br />
<FRAME SRC=http://www.htmlforums.com/archive/index.php/"PAGE_B.htm"><br />
</FRAMESET><br />
<br />
</HTML> <br />
<br />
<br />
PAGE_A (the left hand page) has 5 hyperlinks which link to 5 pictures.<br />
Each picture is displayed in it's own html page...ie Pic1.html,Pic2.html, Pic3.html etc etc.<br />
<br />
My Question is???<br />
I would like to click on a hyperlink (From Page_A) and have the picture appear in the Page_B frame?<br />
<br />
Can anyone offer some help to this please?<br />
<br />
Thanks,<br />
Rastin<!--content-->give the frames a name:<br />
<br />
<frame src=http://www.htmlforums.com/archive/index.php/"content.html" name="left"><br />
<br />
<br />
then, in the hyperlink, define a target:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"image.gif" target="left">Click Me</a><br />
<br />
then the picture will open in the frame named "left".<!--content-->
 
Back
Top