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 have a ready facebook application that should be linked to a facebook page. I am trying to link the canvas url of my application to a button in the page with the help of javascript by calling:

function onBtnClick() { window.location = "http://apps.facebook.com/CANVAS_URL/"; } 

When I click the button that is supposed to take me to the app I get only an empty page with a blue box and "Facebook" string inside it (pretty much looking like the facebook logo)

This box is a link to my application and if clicked takes me to http://apps.facebook.com/CANVAS_URL/

The same problem occurs in the application, where I try to link the facebook page. The link there is a regular <a> tag.

Do you have any ideas how to redirect to an app without this additional "Facebook" page?

Thanks in advance,

Martin

share|improve this question

2 Answers

up vote 2 down vote accepted

Use this instead:

top.location.href = "http://apps.facebook.com/CANVAS_URL/";

You need the upper frame (Facebook) to redirect.

share|improve this answer
Thanks a lot, that solved the problem. Sorry for bothering with this stupid question – Martin Apr 11 '11 at 20:51
@Martin: You are welcome! – ifaour Apr 11 '11 at 21:04

If using a simple <a> html link, try target="_top"

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.