Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to add Facebook comments using JavaScript (jQuery) to be able to customise the data-href. I used the following code, but nothing appear in the div col2.

$("#col2").html(
    id+"<div class='fb-comments' data-href='http://127.0.0.1/GazaPlaces/' data-num-posts='2'"+
    " data-width='500'></div>"
);

What is the solution?

share|improve this question

1 Answer

up vote 2 down vote accepted

Use the Facebook JavaScript SDK:

<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_US/all.js#xfbml=1&appId=75803274170";
        fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));
</script>

If you already loaded it, and you then want to add another comments plugin, that is you dynamically added that div in your code, then you need to call the XFBML parse method:

FB.XFBML.parse();
or
FB.XFBML.parse($(id));

You can read more about it in FB.XFBML.parse.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.