I have a facebook app in an iframed tab. If while on that tab a user likes the fan page via the Like button up there in the right corner, is there an event callback? Or anyway to subscribe to this event?
I know about the below code, but this doesn't seem to be working for the Like button on the fan page, I can only get it to work if I throw a Like button widget into the iframed tab, which is not what I'm looking for.
FB.Event.subscribe('edge.create', function(href) {
// Do something, e.g. track the click on the "Like" button here
alert('You just liked ' + href);
});