For some reason, when I click the Facebook Send button, the button changes its color, as to say it was clicked (this is normal), but the div does not appear.
I am giving you a simple example below. It doesn't work for me.
Does anyone know what mistake I made? Thanks a lot
My code is the following:
EDIT: All I did was copy and paste what the Facebook documentation tells me to paste.
<html>
<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&appId=276966272386423";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="fb-send" data-href="http://apple.com"></div>
</body>
</html>