Forum Moderators: open

Message Too Old, No Replies

iframe question

opening iframe links

         

gniver

3:20 pm on Dec 27, 2006 (gmt 0)

10+ Year Member



When my homepage loads, another page on my site opens in an iframe in the middle-right section of the page.

How can I set up links within the iframe to open in the full open browser window? Otherwise the new page loads within the iframe.

The_Hat

5:19 pm on Dec 27, 2006 (gmt 0)

10+ Year Member



<A href="whatever" target="_example>link text</a>

TARGET="_blank"
This target will cause the link to always be loaded in a new blank window. This window is not named.

TARGET="_self"
This target causes the link to always load in the same window the anchor was clicked in. This is useful for overriding a globally assigned BASE target.

TARGET="_parent"
This target makes the link load in the immediate FRAMESET parent of this document. This defaults to acting like "_self" if the document has no parent.

TARGET="_top"
This target makes the link load in the full body of the window. This defaults to acting like "_self" if the document is already at the top. It is useful for breaking out of an arbitrarily deep FRAME nesting.