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.

The facepile works perfect in chrome but in firefox(v 10.0.2) I only get the small fb icon(that comes just before the friends names). The friends names and pictures are not being shown. And yes, I am logged into facebook in my firefox browser. I also have this in my html:

<html class="no-js" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">

Suggestions please

Some details: 1) FYI this is my facepile code:

<div class="fb-facepile" data-max-rows="1" data-width="500" data-app-id="<? echo $fb_app_id ?>"></div>

2) This is the facebook JS I have included:

<div id="fb-root"></div>
<? $fb_app_id = $this->config->item('facebook_app_id');  ?>
<script>
   window.fbAsyncInit = function() {
   FB.init({
      appId      : "<? echo $fb_app_id ?>", // App ID
      channelUrl : '/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 initialization code here
};

// 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));
</script>
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.