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 want to include Facebook share button and comment box to my website.

I have a code for share button:

<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" 
        type="text/javascript">
</script>
<a name="fb_share" type="icon"  share_url="www.example.com"></a> 

For comment box:

<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&appId=258471354227171";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-comments" data-href="www.example.com" data-num-posts="3" data-width="600"></div>

Separately it works perfect, but when i put it in one page just one of them is working. What is a problem?

share|improve this question
Can you check if the firebug console fires any errors? – Alexander Nenkov Mar 2 '12 at 9:39
Yes, I get "FB.provide is not a function". – Lina Mar 2 '12 at 9:45

1 Answer

up vote 1 down vote accepted

I think the solution you need is here:

Facebook Like button sometimes appears sometimes not

Basically you need to add the FB.share script after all.js.

share|improve this answer

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.