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 am working in a facebook iframe application, the problem I am having are the links in my navigation. what URL shall I use ? if I use the app.facebook.com/my-app/page then it first redirects where it shows facebook's logo and then goes to the page. and If I use normal links of my server then the Application opens up outside facebook's environment if loaded in a new tab, like the link is opened in a new tab by a right click. How to solve this?

Also note that i am using just the JS SDK, all the pages are simple HTML.

share|improve this question

1 Answer

If you need to refresh Facebook you need to use http://app.facebook.com/my-app/page and target top

<a href="http://app.facebook.com/my-app/page" target="_top"></a>

And if you only need to refresh contens (just inside of iframe) use page

<a href="page"></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.