Why does Facebook comment box not load after calling jQuery.load?

I have used jQuery.load() method in my wordpress site to load next and previous post. Script is working fine but the problem is when the next or previous post loads the social media button like Facebook or Tweet button, but Facebook comment box does not load.

I have tried this but that is not working.

Related posts

Leave a Reply

1 comment

  1. I have solved that using

                function (responseText, textStatus, XMLHttpRequest) {
            FB.XFBML.parse(); 
            #twitter and google code goes here
        });
    

    which load after the content. its fine and working properly