How to open a Link to another Frame in HTML?
Solution 1:
In the <frame>
tags inside the <frameset>
tag you have to use the attribute name
for the frames, not ID
, like this
<frameset cols = "20%,50%">
<frame src = "frame1.html" name = "frame1">
<frameset rows = "30%,30%">
<frame src = "frame2.html" name = "frame2">
<frameset cols = "25%,25%">
<frame src = "frame3.html" name = "frame3">
<frame src = " ">
Then your link (inside frame1) should be like this:
<a href = "frame3.html" target = "frame3">
(P.S.: If you need an ID, you can use both name and ID)