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 an issue with one of my facebook apps.
Right now I'm writing a game application which should run in a tab in my fan page.
The flow of the process is:
The user lands in the tab inside the fan page --> authorizes the app --> starts playing
I want EVERYTHING to run inside the iFrame in the tab fan page.
The thing is, once the user confirms the application permission, I'm using a redirect Javascript function

    $url = "game.php";
    echo "<script type=\"text/javascript\">top.location.href='".$url."'</script>";

to redirect the user to the game, BUT the redirection causes the flow to leave the fan page and the tab.

How can I leave the user inside the iFrame to play the game?

Thanks!

share|improve this question
1  
you know top.location.href redirect the parent window. so remove the top from the top.location.href and then try it. – munjal Aug 11 '11 at 8:57
You're so right.. Thanks! – Sharon Haim Pour Aug 11 '11 at 9:05
@munjal Even though its a simple mistake the user has done, consider posting that as an answer so that future visitors knows this as answered question. – Vijay Aug 11 '11 at 9:30
okay Vijay. Thanx for the suggestion :) – munjal Aug 11 '11 at 11:02

1 Answer

up vote 0 down vote accepted

you know top.location.href redirect the parent window. so remove the top from the top.location.href and then try it.

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.