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.

When clicking Login, a function called login() and request for Facebook permissions. However while it does work on Chrome and Opera, it doesn't do anything on Firefox.

FB.login(function(response) {
    if (response.authResponse) {
        window.location = "<?=$loginUrl?>";
        accessToken = response.authResponse.accessToken;
        }
    }, {scope: 'email,user_birthday'});

I have added an alert just before this code, and it runs when clicking the login button. So the problem is solely with facebook's login code.

You can see my login page on http://justwalk.it/login

Also there is no "a popup window was blocked" or warning of the sort. Anybody experienced this? What could be the reason for which it doesn't work on firefox?

share|improve this question
1  
If you open up FireBug, in the Net panel, do you see a request going out that's being blocked (in red text). Also, are you sure the callback URL is setup correct on the developers.facebook.com site? – Brian Mains Dec 10 '11 at 2:09
It works well for me in Firefox at your site. – dmirkitanov Dec 10 '11 at 14:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.