I have a page with a kind of infinite scrolling. That means the homepage loads n posts everytime the user reach the bottom of the page. Every post has facebook comments loaded with the XFMBL way: after AJAX had loaded the post, the following script will parse the facebook plugin:
$( document ).ready(function() {
FB.XFBML.parse(document.getElementById("<?php echo $_id ?>"), function() {});
});
Actually the "infinite scrolling" does not give me any problems but a the beginning. In fact when I load the whole page, supposing the site will firstly load 5 posts to fill the screen, every facebook comments will be refreshed 5 times. After that I have no other problems (every post loaded later doesn't give any problems).
Can you help me? Thanks in advance