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.

As you probably know the Facebook Like button loads very slowly.

And I am trying to figure out how to detect when the button has finished loading and has been added to the website.

The reason being that I show a loading animation, and then hide that and show the button, but I'd like to show the button when it has finished loading.

Can this be done?

Thanks in advance everyone!

share|improve this question
As far as I am aware, the Facebook "Like" button processes your page after your page has finished loading all elements. It might be better to first profile your page to see what is taking the longest to load (probably images). I use: developers.google.com/chrome-developer-tools/docs/network – Codesleuth Jun 29 '12 at 13:50
@Codesleuth my website doesn't have many images and loads within a second. I just wait for the facebook like button to load. Even if it starts loading once load is complete, how do i detect it? – Cristian Jun 29 '12 at 14:11

3 Answers

up vote 2 down vote accepted

I'm pretty sure the facebook Like button is wrapped in an iFrame. If it is, you can find something to reference that iFrame by and use ->

$('iframe[class/id/name=whatever]').load(function(){ 
  //This element is loaded 
});

EDIT

Based on your specific needs, we can hook into any attribute as mentioned in my comment, I simply choose frameborder="0" to hook into.

$('iframe[frameborder=0]').load(function(){
  alert("loaded.");
}); 
share|improve this answer
It is an iframe, but that iframe is inserted by a script (e.g. //connect.facebook.net/en_GB/all.js) and in my experience it's the script's work that takes time, not creating the iframe and showing content - that part is actually very quick. Perhaps the OP can describe his symptoms more. In any case, your answer will solve his problem. NOTE: use $('iframe.fb_ltr') since this is the class my pages have. – Codesleuth Jun 29 '12 at 13:59
Wordith my brethern. – Ohgodwhy Jun 29 '12 at 14:07
In regards to the code I have found that the id is generated randomly so I don't know how to catch that, and it doesn't have a class. I have tried .fb_ltr instead of id and the function doesn't fire. Any ideas? THanks for your help! – Cristian Jun 29 '12 at 14:15
What other attributes does the iframe have, does it have a name? height? width? anything? we can hook into any attribute it has and filter the selector based on that. – Ohgodwhy Jun 29 '12 at 14:17
I've tried that there is a div class called 'fb-like fb_edge_widget_with_comment fb_iframe_widget' and I did a hook as follows: '$('.fb-like fb_edge_widget_with_comment fb_iframe_widget iframe')' and it still doesn't fire? Sorry if im doing something wrong! – Cristian Jun 29 '12 at 14:21
show 6 more comments

One can subscribe to the xfbml.render event to get notified when rendering is complete, which only fires once per page parsing (and works not only for xfbml, but for the new html5 trickery too). Page parsing automatically happens when the FB JS SDK loads if xfbml : true.

window.fbAsyncInit = function() {
  FB.init({
    ...
    xfbml : true
  });

  FB.Event.subscribe('xfbml.render', function(response) {
      alert('OMG... All Facebook sociaal plugins on page rendereed.... finally!');
  });
};

// And load the SDK Asynchronously here
share|improve this answer
Just FYI: XFBML and “the new html5 trickery” are in fact the same thing. The DIV-elements with the appropriate class and data-whatever attributes are just what FB call the “HTML5-compatible way of writing XFBML tags”. – CBroe Aug 7 '12 at 9:39

If you are adding the Facebook widget dynamically and thus calling FB.XFBML.parse manually, then you can you simply specify a callback function that gets called when rendering is complete.

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.