|
|
|
If a non-framebased HTML document contains a hyperlink that links to a page called analysis.htm then it appears in the HTML document somewhat like this:
Click here to see the <a href="analysis.htm">Analysis</a> of the project.
|
|
Now if the same link was in a frameset, (say in the frame window called menu) and we wanted it to link to a page that is loaded in the other frame window, (named main) then the HTML code would be:
Click here to see the <a href="analysis.htm" target="main">Analysis</a> of the project
|
|
We simply added the desired frame window (main) as a target for the link.
The link will be opened in the main frame window instead of the menu frame window where the link itself is located.
|
|
|
|