I'm using the default Facebook embed code:

<div id="fb-root"></div> 
<script src="http://connect.facebook.net/en_US/all.js#appId=176702405718664&amp;xfbml=1"> </script>
<fb:like href="http://domain.com" send="true" width="700" show_faces="false" action="recommend" font=""></fb:like>

.. but I'd like to show an alert if the user clicks 'recommend' or 'send' buttons. Please see this fiddle:

http://jsfiddle.net/4wB9x/1/

Thanks!

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

you will have to subscribe to the edge.create event, it gets triggered when user clicks the like button.

FB.Event.subscribe('edge.create',
function(response) {
    alert('You liked the URL: ' + response);
   }
);

// for send you will have to use this

 FB.Event.subscribe('message.send',
function(response) {
    alert('You sent the URL: ' + response);
   }
); 
link|improve this answer
Aha! So directly on the page in <script> tags? – Nimbuz Sep 12 '11 at 4:06
yes, make sure you have included the "all.js" script of facebook js sdk – Parvesh Sep 12 '11 at 4:29
hmm..can't get it to work for the 'send' button. – Nimbuz Sep 12 '11 at 4:53
yes i see that send button has a diff. event, updated the answer accordingly – Parvesh Sep 12 '11 at 5:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.