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 documentation for the Facebook like button suggests including the following script:

<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

As I read it, this does nothing more than add the external all.js file before the first script tag on the page.

<script id="facebook-jssdk" src="//connect.facebook.net/nl_NL/all.js#xfbml=1"></script>

Is there any reason to not just add the completed script tag to the page source in the first place?

share|improve this question

1 Answer

up vote 2 down vote accepted

From the Javascript SDK page;

This code loads the SDK asynchronously so it does not block loading other elements of your page.

In other words, yes, you could most likely include it right away, but the user would experience it as if your page were loading more slowly.

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.