I'd like to do something on the page when a user clicks 'Like'.

I thought something simple like the following would work:

<script type="text/javascript">
    $(document).ready(function () {

        $('.connect_widget_like_button clearfix like_button_no_like').live('click', function () {
            alert('clicked');
        });
    });
</script>

This is the iFrame that FaceBook supplies to add the Like button to the page:

<iframe 
    id="FBLike"
    src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.MySite.Com... blahblahblah" 
    scrolling="no" 
    frameborder="0" 
    style="border:none; overflow:hidden; width:450px; height:80px;" 
    allowTransparency="true">
</iframe>

My script attempts to bind a click event to an anchor tag that is loaded into the iFrame when the page loads. It doesn't work though. Is there any way for me to get jQuery to recognise when this is clicked? Thanks

link|improve this question

feedback

5 Answers

up vote 19 down vote accepted

Facebook allows you to subscribe to the like clicking event:

FB.Event.subscribe('edge.create', function(response) {
  // like clicked
});

see here.

link|improve this answer
but this cannot be done in a tab, right? any other solutions like at facebook.com/901Tequila?v=ap4904458780 , where clicking on the like button redirects you to the pin wall? – SteMa Nov 19 '10 at 17:42
feedback

Make a PHP (or whatever language you use) script to CURL the source from http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.MySite.Com... blahblahblah

Put the source from facebook into your html page, you can then you can do whatever you like in JavaScript/jQuery with the code from Facebook.

Some examples for CURL within PHP - http://www.php.net/manual/en/curl.examples.php

link|improve this answer
That's a pretty sneaky work around, nice :-) – Ben Everard Sep 15 '10 at 15:23
It's also most likely to be against their TOS/policy. – Peter Bailey Sep 15 '10 at 19:23
I have serious doubts what something like that would work. It would make like button spamable and Facebook can not allow that. – Denis Sep 15 '10 at 19:56
No idea what their TOS are, obviously you would need to check. @denis , curling the URL will produce the same result as viewing the page directly or as is displayed in an iframe. – Damon Skelhorn Sep 15 '10 at 21:00
feedback

You cannot use JavaScript to access elements within an iframe that does not belong to the current URL, as I guess the domain you're using is not facebook.com you won't be able to attach an event to the like button in this way.

link|improve this answer
feedback

One can detect 'like' and 'unlike' event of facebook like button using edge.create and edge.remove respectively.

link|improve this answer
I was not aware of the edge.remove event. Do you have a link? – Phoenix Oct 11 '11 at 18:54
Ah, there it is. Thanks! – Phoenix Oct 12 '11 at 14:40
feedback

One can attach click event for liking and disliking of facebook like button. It is done using event.subscribe. this function accepts a parameter to check for liking or disliking. Check this link for more details and demo: http://bit.ly/zTFQW3

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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