links in frames question

themacko

Barking at the moon.
I've got a simple homepage thats made using frames. Is there a way, that if I had a link in the bottom frame, if someone clicked it the link would take over the entire window.

In example, the frames page is index.html. the top frame is nav.html and the bottom is news.html. If someone clicked a link in news.html, could it open and replace index.html instead of just news.html?

I hope that makes sense .. thanks for any help!
 
Yes, use a target="_top" like this:

<A HREF="somepage.html" TARGET="_top">My Link</A>

Don't forget the underscore...
 
Back
Top