View Full Version : I put links on my left frame but when i click on them they open a new window ????????


AnimeAngel377
06-19-2003, 03:05 AM
Okay so i have the frame set with one on top and then one on the left...

I put links on the left side and used the tag so they could apear on the right side...BUT THEY OPEN A NEW WINDOW INSTEAD????

Can someone help with that please?

Dude128
06-19-2003, 03:18 AM
double check your target. make sure that it EXACTLY matches the name of the frame you want them to open in, keeping in mind that it is case sensitive, too.

if you still can't get it to work, could you post a link to the site?

AnimeAngel377
06-19-2003, 03:23 AM
Well I just changed it to target what the right sides page is called and it still wont work...so here is the site

http://www.angelfire.com/dragon/malicious0

Dude128
06-19-2003, 03:32 AM
in your frameset code you have this:
<frame src="right.html" NAME="right">

but your link looks like this:
<a href="..." target="rightside">Biography</a>

you have to make sure those two words match exactly. either you'll have to change the frame's name, or target your links to rightside

AnimeAngel377
06-19-2003, 03:36 AM
ahhh okay i changed the "rightside" thing to "right.html" and i went to the site...but it still opens a new window...

what is messing up???

AnimeAngel377
06-19-2003, 03:59 AM
Okay this is what i have for my index page:::

<html>
<head>
<title>The Malicious Dragon</title>
</head>
<frameset rows="165,*">
<frame src="top.html" NAME="top" scrolling=no>
<frameset cols="160,*">
<frame src="left.html" NAME="left" scrolling=no>
<frame src="right.html" NAME="right">
</frameset>
</frameset>
<body>
</body>
<noframes>
<a href="http://www.angelfire.com/dragon/malicious0/main.html/">Enter If You Dare...</a>
</noframes>
</html>


and this is what i have for the left.html where i put the link:::

<a href="http://www.angelfire.com/dragon/malicious0/bio.html" target="right.html">Biography</a>

SO what is the problem then???

pb&j
06-19-2003, 04:18 AM
Originally posted by AnimeAngel377

<frame src="right.html" NAME="right">

<a href="http://www.angelfire.com/dragon/malicious0/bio.html" target="right.html">Biography</a>


take off the .html part in your target.
the target values should match the name values.

AnimeAngel377
06-19-2003, 07:05 PM
ahhhhhh omg omg thank you so very much...that work perfectly.

Well that works...thanks again...