I want to use the facebook like button for a facebook fan page, but with a callback function.
So far I've only managed to get the callback function to work with a facebook app with the following code-
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId : 'appID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'http://www.my_url.com/channel.html', // channel.html file
oauth : true // enable OAuth 2.0
});
</script>
<script>(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_GB/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
FB.Event.subscribe('edge.create', function(href, widget) {
callbackFunction();
});
</script>
Like I said, the above code works fine for a facebook app. But what I really want to do is bind code similar to this, but to a facebook page 'like' button such as the following-
<div class="fb-like-box" data-href="https://www.facebook.com/AllyCommunity" data-width="292" data-height="250" data-show-faces="true" data-stream="true" data-header="true"></div>
Does anyone know of a way to achieve this?
Many thanks in advance.
Nick
HTML5version is the same as usingXFBML, events will be triggered, onlyiframeversion missing those events. – Juicy Scripter Jun 10 '12 at 14:56