If you give the iframe a name and target it with your links on the top page, yes:
HTML Code:
<iframe name="norma" src= . . .
HTML Code:
<a href="some.htm" target="norma">Link Text</a>
You can also make up links (for the top page, not the contained page) with events like these:
HTML Code:
<a href="javascript:toTop();" onclick="norma.scrollTo(0,0);return false;">Top</a>
and:
HTML Code:
<a href="javascript:toBottom();" onclick="norma.scrollTo(0,10000);return false;">End</a>
Notes: The href values of these last two links are dummies. They could as well be:
But, whatever they are will show in the status bar (in many browsers) onmouseover so, might as well make them seem official. This also means that if you make the event onmouseover, you still need to return false onclick, ex:
HTML Code:
<a href="javascript:toBottom();" onclick="return false;" onmouseover="norma.scrollTo(0,10000);">End</a>
Bookmarks