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.

So this is kind of strange to me, hopefully somebody can help me out.

When I add this code below to a html page and then open it, the like button does not appear. But when I do it in jsfiddle it works http://jsfiddle.net/wZFss/ Anybody got any ideas what might be wrong?

Thanks, J

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    </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_GB/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div class="fb-like" data-href="http://www.diabolotricks.net" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
<p>helloworld</p>
</body>
</html>
share|improve this question

1 Answer

You have your doc type set to xhtml 1.1 and your using the html5 button code.

You will either need to use, iframe button, xfbml button or change your doc type to html5.

refer to: http://www.w3.org/QA/2002/04/valid-dtd-list.html

refer to: https://developers.facebook.com/docs/reference/plugins/like/

share|improve this answer
I tried with the iframe and xfbml buttons, still couldn't get it to work. Changed the doctype I still couldn't get it to work. Apologies if I being a dumb newbie. – jimmyp1399473 Jul 2 '12 at 1:19
try the fbml version again, but add this as the html tag <html itemscope itemtype="schema.org/Blog"; xmlns="w3.org/1999/xhtml"; dir="ltr" lang="en-US" xmlns:fb="facebook.com/2008/fbml">; – Shawn E Carter Jul 2 '12 at 2:02
if that still fails you may need to post a bug to facebook about the local your using as the sdk. 'en_GB' – Shawn E Carter Jul 2 '12 at 2:03
Still doesn't seem to be working, here is the code jsfiddle.net/9UzAD before I tell Facebook – jimmyp1399473 Jul 2 '12 at 19:30

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.