View Full Version : Grrr....linking into another frame question


Larka
07-02-2003, 10:46 PM
I asked this question last time when I was starting a site and now I'm starting another one and it won't work. Here's the code I used

<a href="" target="T">

And it just opened a new window when I want it to go into the center frame. It might be better if you go see what I mean

http://ca.geocities.com/jumanji_magic

(The only link I've done so far is "Take the Risk")

kittycat
07-02-2003, 10:54 PM
You need to clean up your frames code a bit... It's only showing the first section, where there is no frame named "T". Try this instead and see if it's the code you want.

<html>
<head>
<title>Jumanji</title>
</head>
<frameset cols="160,*">
<frame src="http://ca.geocities.com/jumanji_magic/menu.html" name="S>
<frameset rows="85,*">
<frame src="http://ca.geocities.com/jumanji_magic/top.html" name="top" scrolling=no>
<frame src="http://ca.geocities.com/jumanji_magic/main.html" name="T>
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="http://ca.gecities.com/jumanji">Click Here</a>
</noframes>
</html>

Larka
07-02-2003, 10:59 PM
Thank you it all just clicked! I now understand!! Thank you.