Hi I am trying to open an html document in a target frame and every time I click the link it opens in the same frame, what am I doing wrong and how could I fix it?
Code:
<html>
<frameset cols="180, *">
<frame name="LeftFrame" src="index.htm">
<frame name="RightFrame" src="welcome.htm">
</html>
and this is an example of the link code in my index.htm
Code:
<li><a href="one.htm" target"RightFrame">one.htm</a></li>
<li><a href="two.htm" target"RightFrame">two.htm</a></li>
<li><a href="three.htm" target"RightFrame">three.htm</a></li>
I am trying to open in the RightFrame, do I have to change that code in the framset (first excerpt of code) document?
Cheers!
Tom Sparks