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.

im using this code to implement a like box in my site

<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>

<fb:like-box href="{page url}" width="625" height="256" border_color="#fff" show_faces="true" stream="false" header="false"></fb:like-box>

Now i wish to register to this event:

FB.Event.subscribe('edge.create',
    function() {
        alert('Like box is clicked');
    }
);

but this event handler returns 'FB is not defined' and when i try to add the FB.init code

<script>
  FB.init({
    appId  : 'YOUR APP ID',
    status : true, 
    cookie : true, 
    xfbml  : true  
  });
</script>

im getting FB.init was already called

What am i doing wrong here ?

share|improve this question
possible duplicate of Subscribe FB event – Juicy Scripter Jun 19 '12 at 21:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.