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 trying to make the standard facebook 'Like' button work in my code and failing. Can anyone help me understand what it is I am missing here?

I have created a new clean page that will just show the facebook like button to try and test. Here is what the facebook code generator (http://developers.facebook.com/docs/reference/plugins/like/) gives me:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>

<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>

<div class="fb-like" data-href="http://www.facebook.com/cmispeaker" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false" data-font="arial"></div>

</body>
</html>

Can anyone help me or give some pointers? I am sure I am missing something simple!

share|improve this question
What do you mean by "failing"? it's working fine here on all browsers. Anything (for some reason) is thrown in the console? – ifaour Nov 3 '12 at 18:31
In dreamweaver, if I simply have a page just like the one in my code I get nothing displayed, and when I view in a web browser again nothing. No button showing up. – Keith Nov 4 '12 at 15:13
Ah....so I think I have resolved the problem. The issue being I was just testing this as a file - once I upload this page to my webserver and test it works perfectly! Thank you for all your help. – Keith Nov 4 '12 at 15:21
You can still test this code locally, just have your localhost server setup correctly. – ifaour Nov 4 '12 at 16:40

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.