The following code, copied from the Facebook documentation here, is not working for me in Chrome.

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
  appId  : 'YOUR APP ID',
  status : true, // check login status
  cookie : true, // enable cookies to allow the server to access the session
  xfbml  : true  // parse XFBML
});
</script>

In the Javascript console I get:

Uncaught ReferenceError: FB is not defined

I'm not having any problems with the SDK in Firefox or Safari, just Chrome.

link|improve this question

71% accept rate
possible duplicate of FB is not defined problem – ifaour Feb 21 at 6:46
check my answer in the dup question. – ifaour Feb 21 at 6:47
feedback

12 Answers

up vote 11 down vote accepted

I saw a case where Chrome had installed WidgetBlock which was blocking the Facebook script. The result was exactly this error message. Make sure you disable any extensions that may interfere.

link|improve this answer
Thanks a million. My chrome synced the widgetblock extension from my home computer to the workplace. Fun bug. – Kit Sunde Jul 1 '11 at 5:09
FYI - this chrome extension also caused the problem - "Facebook Disconnect" - chrome.google.com/webstore/detail/… – Jody Feb 29 at 16:05
Yeah, same for the superb browser addon "ghostery" (must have!). Now that I found out I feel a bit stupid for not checking this myself. Thanks! – user562529 Mar 11 at 15:44
Ah, I was using "Facebook Disconnect" – Alex Miller Mar 31 at 2:33
feedback

So the issue is actually the that you are not waiting for the init to complete. This will cause random results, but here is what I use.

window.fbAsyncInit = function () {
    FB.init({ appId: 'your-app-id', cookie: true, xfbml: true, oauth: true });

    // *** here is my code ***
    if (typeof facebookInit == 'function') {
        facebookInit();
    }
};

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

This will ensure that the once everything is loaded, the function facebookInit is available and then executes it. That way you don't have to duplicate the init code every time you want to use it.

function facebookInit() {
   // do what you would like here
}
link|improve this answer
Thank you for this. Just saved me from having to use sync instead of async. +1 to you – Damien Keitel Feb 22 at 15:53
feedback

I encountered this problem too and what solved it has nothing to do with Facebook but the prior script I included that was in bad form

<script type="text/javascript" src="js/my_script.js" />

I changed it to

<script type="text/javascript" src="js/my_script.js"></script>

And it works...

Weew... hopefully my experience can help others stuck in this that has done almost about everything but still can't get it to work...

Oh Boy... ^^

link|improve this answer
Same mistake here... Had a big headache before i got to your post. No error was shown and the FB JS SDK wasn't loading at all if the previous script (like jquery) was in that format. – Aleja_Vigo Mar 7 at 12:32
feedback

Try Asynchronous Loading: http://developers.facebook.com/docs/reference/javascript/fb.init/

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId  : 'YOUR APP ID',
      status : true, // check login status
      cookie : true, // enable cookies to allow the server to access the session
      xfbml  : true  // parse XFBML
    });
  };

  (function() {
    var e = document.createElement('script');
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
  }());
</script>
link|improve this answer
Still gives me the same issue. Works in Firefox / Safari, doesn't work in Chrome. – Alex Miller Dec 29 '10 at 19:05
1  
ok, try a event: window.onload = function(){ /* Init code*/ } – beshkenadze Dec 29 '10 at 19:07
Same thing! I actually had it like that originally. Still getting "FB not defined." Gaaah! Thanks for the suggestions though! – Alex Miller Dec 29 '10 at 19:39
feedback

Not sure if you're still having this problem, but I just had the same problem, turned out I had an extension running that was blocking Facebook from all websites that is not Facebook. Disabled it, worked!

link|improve this answer
feedback

Try to load your scripts in Head section. Moreover, it will be better if you define your scripts under some call like: document.ready, if you defined these scripts in body section

link|improve this answer
feedback

AdBlock blocks the facebook JS api scripts because it's related to facebook connect which is often annoying.

link|improve this answer
feedback

Have you set the appId property to your current application ID?

link|improve this answer
feedback

I had the same problem and the only solution I found was putting everything that used the FB statement inside the init script, I also used async loading, so the callback function is after everything that needs FB. I have a common page dinamycally loaded with php so many parts need different facebook functions controlled by php if statements which is making everything a bit messy, but is working!. if I try taking any FB declaration out of the loading script, then firefox shows the "FB is not defined" message. Hope it helps in anything.

link|improve this answer
feedback

I had the same problem. The solutions was to use core.js instead of debug.core.js

link|improve this answer
feedback

If you're using JQuery, try putting FB withing Jquery call

e.g.

$(document).ready(function(){
    FB.Event.subscribe('auth.login', function(){
        alert('logged in!');
    });
});

that worked for me

link|improve this answer
feedback

I had a very messy cody that loaded facebook's javascript via AJAX and i had to make sure that the js file has been completely loaded before calling FB.init this seem to work for me

    $jQuery.load( document.location.protocol + '//connect.facebook.net/en_US/all.js',
      function (obj) {
        FB.init({
           appId  : 'YOUR APP ID',
           status : true, // check login status
           cookie : true, // enable cookies to allow the server to access the session
           xfbml  : true  // parse XFBML
        });
        //ANy other FB.related javascript here
      });

This code uses jquery to load the javascript and do the function callback onLoad of the javascript. it's a lot less messier than having creating an onLoad eventlistener for the block which in the end didn't work very well on IE6, 7 and 8

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.