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.

Jquery provides a very convenient way to delay executing code until the DOM is fully loaded:

$(function() {
    dom_is_loaded();
});

The Facebook Javascript SDK, when loaded asynchronously, provides a similar mechanism:

window.fbAsyncInit = function() {
    fb_is_loaded();
}

What's the most elegant way to delay code from running until the DOM and Facebook's SDK have both fully initialized?

share|improve this question

4 Answers

up vote 2 down vote accepted

Is there a reason why just doing

window.fbAsyncInit = function() {
    $(function() {
        both_loaded();
    });
}

doesn't work?

share|improve this answer

Why not:

var jq_ready = false, fb_ready = false;

function bothReady(){
  ... 
}

$(function() {
  dom_is_loaded();
  jq_ready = true;
  if(fb_ready){
    bothReady();
  }      
});

window.fbAsyncInit = function() {
  fb_is_loaded();
  fb_ready = true;
  if(jq_ready){
    bothReady();
  }      
}

I think this is cleaner than setting an interval and will handle either event happening first.

share|improve this answer

Probably set a flag in your fbAsyncInit function and check it in the jQuery load:

$(handleLoad);
function handleLoad() {
    if (!facebookLoaded) {
        setTimeout(handleLoad, 10); // Or 100 or whatever
    }
    else {
        // You're good to go
        bothLoaded();
    }
}

I expect there's already some global you can check for whether Facebook is loaded (I haven't used the Facebook API). If not, you can use your own flag (ideally not a global):

(function() {
    var fbLoaded = false;
    window.fbAsyncInit = function() {
        fbLoaded = true;
    };

    jQuery(handleLoad);
    function handleLoad() {
        if (!facebookLoaded) {
            setTimeout(handleLoad, 10); // Or 100 or whatever
        }
        else {
            // You're good to go
            bothLoaded();
        }
    }
})();
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.