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.

Possible Duplicate:
How to let Facebook Login button redirect to a particular URL

I am using the Facebook's login button (XFBML) to login users.. to my app..

But as one clicks the button.. its logs you in but remains on the same page.. how to redirect it.. to home page ?

here is the snippet :

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=APP_ID&amp;xfbml=1">
</script>
<fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button>

So.. what to do ?

share|improve this question

marked as duplicate by Jeff Atwood May 7 '11 at 11:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

<script>
    FB.Event.subscribe('auth.login', function(response) {
        alert("Logged in.. Redirecting you now...");
        // window.location = "some other page";
    });
</script>
share|improve this answer
Well.. I worked out a way.. thanks for the answer.. ! – Yugal Jindle May 7 '11 at 15:14

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