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!