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.

I feel like people have been having the opposite of this problem, I cannot figure how to have links open up outside of fb and not with the iframe.. I am posting material that rests in an FB app hosted by my server. The page has links to other sites, but when they open up they are still in the facebook iframe.

using basic:

<a href= "http...."><b>Blank.com</b>

looks like this Click link...

I'm a rookie and any help would be great. Thanks

share|improve this question

2 Answers

target="_blank" works if you have set up an app for the iframe.

share|improve this answer
i wonder if there's an option so it doesn't open in a new window, but does a full page refresh and links properly? – mrtunes Jun 27 '11 at 20:25
1  
like target="_parent" ? link – Mathias Madsen Stav Jul 4 '11 at 9:24

Have you tried the target attribute?

<a href="http://www.example.com" target="_blank">example.com</a>
share|improve this answer

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.