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.

About 50% of the time, when calling FB.init, I get this javascript error:

enter image description here

Refreshing the page sometimes fixes the issue. I can't discern any particular pattern.

Does anyone recognize this code? Is it part of the facebook js sdk?

How do I figure out what is going wrong? I checked the open issues at the Facebook support site but did not see anything.

This is my init code straight out of the fb docs:

<script>
    window.fbAsyncInit = function () {
        debugger;
        FB.init({
            appId: xxxx,
            status: true,
            cookie: true,
            xfbml: true
        });
    };

    // Load the SDK Asynchronously
    (function (d) {
        debugger;
        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));
</script>
share|improve this question
I've never seen this kind of error. The JS code you asked looks like from Facebook. Maybe a conflict with other JS? By the way, your app id number must be quoted. – Victor Schröder Aug 23 '12 at 4:41
The appid was quoted. I just removed it for the post. Thanks. I'll try removing my other js libraries. You might be right. – rboarman Aug 23 '12 at 17:39
I removed all js libraries except for jQuery and still get the problem sporadically. – rboarman Aug 27 '12 at 18:29
I don't know what to do from now on. Those facebook's JS files are very obscure for me... Can you put your URL here to check? – Victor Schröder Aug 27 '12 at 20:42
Sure. I haven't seen the error yet today. Perhaps they fixed it. – rboarman Aug 28 '12 at 0:14

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.