Computer Science Canada

clicking in link inside iframe

Author:  Paul [ Sun Apr 04, 2004 6:44 pm ]
Post subject:  clicking in link inside iframe

is there a way to click on a link, inside the site displayed on the iframe, which is in another page, and once you click it, the outside page changes?
I have this
this is an iframe inside index.html
code:

<TD COLSPAN=10>
<iframe src="index2.html" name="main" alt="iframes" scroller="yes" frameborder="0" width="510" height="360"></iframe></TD>

there is a link inside index2.html, is there anyway, so that if I click the link, the entire page loads the destination of the link? instead of just the iframe?

Author:  Amailer [ Sun Apr 04, 2004 6:56 pm ]
Post subject: 

<a href=" ... target="_top">
that should wrk Very Happy

Author:  jonos [ Sun Apr 04, 2004 7:34 pm ]
Post subject: 

or make the main page a frame and give it a name and then go target="frame name"


: