Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to make an iframe act as if it were part of the page. Such as when I click a link, it either will open the links in a new tab/window by default, or have it so that when a link is clicked, it will open in the same window, but not just the iframe?

share|improve this question
Is this iframe on your domain? If not, I'm not sure if it's possible. – bozdoz Nov 17 '10 at 4:11
Yes, the iframe is on my domain, but the content inside the iframe is not. – Sean Nov 17 '10 at 4:20

2 Answers

up vote 4 down vote accepted

You can just set the target attribute. To open in the current top window (top frame):

<a href="http://example.com" target="_top">Link Text</a>

Or to open in a new window:

<a href="http://example.com" target="_blank">Link Text</a>

There's also _parent for the parent window (not necessarily the top) and _self for the current window (the default).

share|improve this answer

Do you have control of the content that is in the iframe?

You could use target=_top for the links.

share|improve this answer
No, I do not have control of the content in the iframe. That is where I am stuck. – Sean Nov 17 '10 at 4:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.