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 got a problem in Facebook JavaScript SDK.

Assume I am logged in with a valid Facebook login & granted access to the Facebook App. When the page is loaded, the Facebook SDK is loaded, and loadSelector() in window.fbAsyncInit block is executed, but the response.name returns undefined.

However, the same JS function gets called by a <a> link, it returns valid name.

Here is my HTML :

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Test</title>
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/jquery-migrate-1.1.0.min.js"></script>
    </head>
<body>
<div id="fb-root"></div>
<div id="wrapper"></div>
<p><a href="#" onclick="loadSelector()">Load</a></p>
<script>
  // Additional JS functions here
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'XXXXXX', // App ID
      channelUrl : '//mydomain.com//channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional init code here
    loadSelector();
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));

    function loadSelector() {
        $('#wrapper').html('Welcome!  Fetching your information.... ');
        FB.api('/me', function(response) {
            $('#wrapper').html('Good to see you, ' + response.name + '.');
        });
    }
</script>
</body>
</html>

My question is : How to make the JavaScript load the loadSelector() with valid value when the page finishes loading?

share|improve this question

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.