
March 4th, 2008, 12:25 PM
|
|
Registered User
|
|
Join Date: Jan 2008
Location: Connecticut, USA
Posts: 15
Time spent in forums: 5 h 7 m 11 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by ginnyr I need to get rid of HTML frames. How do I allow users to move from a Frames page to a plain HTML page without the HTML being displayed in one of the frames?
Not looking to hide the frames, but to get away from them all together. So page with frames includes a link to an HTML page, and clicking the link gets rid of all the frames and displays the HTML.
Please HELP !!!!
Thanks for any advice!! |
Do you mean to have a link that moves the entire page to a non-frame page, not just refresh the page in that frame?
I think that is done with using
Code:
<a href="xyz.html" target="_top">link</a>
where "_top" will replace the topmost page with the linked page.
|