|
|  |
|
HTML Links : LINKS IN FRAMESETS
|
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 framewindow called menu) and we wanted it to link to a page that is loaded in the other framewindow, (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 framewindow (main) as target for the link.
The link will be opened in the main-framewindow instead of the menu-framewindow where the link itself was located.
|
|
 |  |
|