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 have developed a web page as follow, would you please help me why this code does not work?

When i liked the page, alert in FB.Event.subscribe('edge.create' does not display!?

http://www.mandanemedia.com/freelancer/

<div >
  <div id='subscribe' style='padding:10px; background:#fff;'>
    <center>
      <img src="fbbutton.jpg" style="width:290px; height:88px;"/>
    </center>
<fb:like-box href="http://www.facebook.com/pages/MandaneMediacom/275554465891715" width="292" show_faces="true" border_color="#fff" stream="false" header="false"></fb:like-box>
    </center>
  </div>
</div>
<div id="fb-root"></div>
</body>
<script type="text/javascript">
window.fbAsyncInit = function() {
    FB.init({
        appId:'275554465891715',
        status:true,
        cookie: true, 
        xfbml: true 
        });
    FB.Event.subscribe('edge.create', function(response) {
        alert('You liked the URL: ' + response);
    });
  };
(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>
share|improve this question
Please look into the actual source code of your page – the code you’ve shown here is not what’s in your page. – CBroe Nov 20 '12 at 10:39
sorry. I put it the original code now. i have spend around 4 hours!!! – Danial Nov 20 '12 at 11:02
This is still not the code as it is inside the page you mentioned. Please look into your browser’s error console. – CBroe Nov 20 '12 at 11:09
opps, here your are :D – Danial Nov 20 '12 at 11:20

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.