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.

My Page Tab tells people to Like the page using the Like Button next to the title of the Page (directly above the iframe).

How do I subscribe to that event being clicked?

Javascript within the Page Tab does not work:

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

Thanks!

EDIT: For now, I'm going with "you can't do it" as the answer...

share|improve this question

1 Answer

up vote 1 down vote accepted

edge.create is to be used with the Facebook Like Plugin. It won't fire when the like button next to the page name is clicked.

The page will get reloaded once the button is clicked.

share|improve this answer
Hi. Thanks for the answer. I want to track the latter with google analytics. Any ideas? – Andypandy Nov 19 '11 at 21:32
No idea, but I don't think this is possible. Since that button is out-side your iframe. – ifaour Nov 19 '11 at 21:38

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.