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 was hoping someone could help me with this: I tried the facebook like button plugin code generator for HTML5, and I can't get the button to display. Here is my code (I'm down to trying just the button on the page), with our website replaced with google:

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

<div class="fb-like" data-href="http://www.google.com" data-send="false" data-width="450" data-show-faces="true"></div>

</body>
</html>

What am I missing? Thanks.

share|improve this question

1 Answer

Try below code:

<div id="fb-root"></div>
<script src="//connect.facebook.net/en_US/all.js"></script>

<fb:like href="http://www.google.com" send="false" width="75" height="20" show_faces="false" layout="button_count"></fb:like>
share|improve this answer
thanks - but I get a new error: "Element "fb:like" not allowed as child of element "body" in this context." Do i need a different doctype? – user1560890 Jul 29 '12 at 11:55
doctype is fine.. try this.. – sandip patil Jul 29 '12 at 11:59
<!DOCTYPE html> <html dir="ltr" lang="en-US" xmlns:fb="facebook.com/2008/fbml"; xmlns:og="opengraphprotocol.org/schema/"; xmlns="w3.org/1999/xhtml"; > – sandip patil Jul 29 '12 at 12:00
thanks - now this error: "Attribute with the local name "xmlns:fb" is not serializable as XML 1.0." – user1560890 Jul 29 '12 at 12:02
@user1560890....did you get that xmlns:fb error fixed...how???????? – ronanc Nov 30 '12 at 23:20

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.