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.

It looks like:

        FB.Event.subscribe('edge.create', function(href, widget) {
            alert("Hi");
        });

works for everybody except me! Here is my code:

         <html xmlns:fb="https://www.facebook.com/2008/fbml">
                               .
                               .
                               .
         <body>
         <div id="section1">    
     <div id="fb-root"></div>
         <script src="http://connect.facebook.net/en_US/all.js"></script>
         <script>
     window.fbAsyncInit = function() {
            FB.init({
               appId :'xxx',
               status : true, 
               cookie : true,
               xfbml : true, 
               oauth : true 
            });
            FB.Event.subscribe('edge.create', function(href, widget) {
               alert("Hi");
            });
          });

          (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 href="mysite" send="false" width="450" show_faces="false" font="tahoma"></fb:like>


     </div> 

I just need a simple way to check if the like button was clicked to show a form on the page! Any Suggestions? Thanks

share|improve this question
   
take a look at this and check you code what you are missing. saschakimmel.com/2010/05/…. This works 10 out 10 for us... :) – Ram G Aug 17 '12 at 20:23
Thanks Ram, it worked but the project is getting more complicated and 2 like buttons should be included in the page!! – Mark Shehata Aug 19 '12 at 22:47
you can even track multiple like buttons, check the code snippet below. It is the same event that gets triggered with different href or Like URL value. – Ram G Aug 20 '12 at 1:46

1 Answer

You can even detect multiple likes on the same page. We use this quite often, check the below snippet.

window.fbAsyncInit = function() {
 FB.init({appId: 'YOUR_FACEBOOK_APP_ID', status: true, cookie: true, xfbml: true});
 FB.Event.subscribe('edge.create', function(href, widget) {

  // START: LOGIC For detecting multiple likes on the same page
   if(href == "LINK_1_ON_THEPAGE') {
       alert('User Like is for Link1');
   } else if (href == "LINK_2_ON_THEPAGE') {
       alert('User Like is for Link2');
   }
  // END: LOGIC For detecting multiple likes on the same page

 });
};
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.