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.

Is it entire possible to run Facebook SDK code integrated into a jQuery script?

Example:

$("#getStarted").click(function() {

    FB.login(function(response) {
        if (response.authResponse) {
            var accessToken = response.authResponse.accessToken;
        }
    });
.....

I would like to only give the Facebook login box once a user clicked on a button on my application. The instance above runs the FB.login irrespective if the user clicked the button or not. The FB code DOES WORK, but not in the order required.

share|improve this question
What you have there should actually work, I have not used jquery clicks instead I have onclick inline my tags which calls a function that has the FB.login. – ryuutatsuo Nov 8 '11 at 18:47

1 Answer

up vote 0 down vote accepted

This did end up to work, however, the example above still ran irrespective if the button was clicked or not, but for other FB.ui() functions it worked perfectly within jQuery code. I can only advise that you write your code in the following order:

1) do the FB.unit() 2) Run your jQuery and FB function 3) Run the FB async code afterwards.

This worked for me.

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.