I am using Facebook comment plugin, I want to handle comment create event to do some ajax actions on server side.
my code (head tag):
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'App_ID', // App ID
channelURL : '//www.dealaumaroc.com/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true, // enable OAuth 2.0
xfbml : true // parse XFBML
});
console.log('fb init');
FB.Event.subscribe('comment.create', function(response)
{
alert(response);
console.log(response);
});
FB.Event.subscribe('comment.remove',
function (response) {
alert('remove', response);
console.log(response);
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
html code:
<fb:comments href="http://www.dealaumaroc.com/dolo/${deal.path}" num_posts="2" width="470" notify="true"></fb:comments>
When I add comment, the comment is added successfully but the event isn't handled. I found many posts on this problem, I used the same code, I can't see why ?
<div id="fb-root"></div>is present in your HTML. – Juicy Scripter May 12 '12 at 20:51hreffor comments widget, alerting oncomment.create/comment.removeevents (see it happen on jsfiddle.net/f7MkV) – Juicy Scripter May 12 '12 at 21:37