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.

I am an amateur trying to add the 'Like Box' to my website. It seems easy enough (no more difficult than implementing my Google shopping cart- which I did fine) Copy the codes - insert into Dreamweaver. However I cannot make the facebook box work at all. I have tried and re-tried both the like box and the like button with no luck. What could I be missing or doing wrong?

This is the code:

<div id="fb-root"></div>
<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_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
</script>

and also this:

<div class="fb-like-box" data-href="facebook.com/triihouse"; data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div
share|improve this question
1  
What code did you use? – Dennis Rongo Feb 6 at 18:21
Are you talking about this? developers.facebook.com/docs/reference/plugins/like-box – Jason Sperske Feb 6 at 18:23
Yes Jason that is exactly what I am trying to use. Dennis this is the code: <div id="fb-root"></div> <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_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> and also this: <div class="fb-like-box" data-href="facebook.com/triihouse"; data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div> – Brenna Paulson Feb 6 at 18:46

closed as not a real question by jrummell, Igy, Sudarshan, alxx, CloudyMarble Feb 8 at 7:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

It is that easy. Here is an example of it (with a demo). This is following the HTML example from the documentation.

<!-- this element must exist only once in your HTML, Facebook will use this to manage a bunch of plug in stuff -->
<div id="fb-root"></div>

<!-- this element is where your like box will appear -->
<div class="fb-like-box" data-href="http://www.facebook.com/backstreetboys" data-width="292" data-show-faces="true" data-stream="true" data-header="true"></div>

<!-- this script will inject the Facebook script, and execute a function that looks for elements that expect to be populated with Facebook data, it should only appear once  -->
<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_US/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
share|improve this answer
Thanks I will see what I can do. – Brenna Paulson Feb 6 at 18:47

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