Question: How can I click a link and have it open in a different frame?
Answer:
This is called targeting, and there are two steps to it:
- Give all your frames a name in the frameset:
<frame src="" name="name_of_frame"> - When you add a link that you want to open in that frame, target that frame:
<a href="" target="name_of_frame">

