I'm trying to execute a FB.Event.subscribe after someone click on the like button:
window.fbAsyncInit = function () {
FB.Event.subscribe('edge.create', function (href, widget) {
alert('I just clicked like button');
});
};
It works if I click on it without using ajax on the pagination, but for example, if click on Page 2, the Ajax reloads all the links (intended) and render the like&share buttons again, but if I click on like, the FB.Event.subscribe event won't work anymore.
I'm using
$( document ).ajaxComplete(function() {
try{
FB.XFBML.parse();
}catch(ex){}
});
to render the buttons after an Ajax call.
Edit: I'm also using PHP with Yii.
I'm not 100% sure where exactly is the Ajax call, but the part that is being reloaded by ajax is that:
<section class="frame-content">
<?php
$this->widget('zii.widgets.CListView', array(
'dataProvider' => $dataProvider,
'itemView' => '_view',
));
?>
</section>
_view is the class that is being reloaded by ajax each time that someone click on any page from the pagination. The ajaxComplete is also inside _view class.