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 am trying to embedded Facebook comment boxes dynamically generated by Backbone.js in my HTML I have the following code right after the body in my HTML file.

<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=147738045314917";
            fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
</script> 

Then I dynamically generate the div tags using Backbone template. I embed the following html tag.

<div class="fb-comments" data-href="http://something.com" data-num-posts="2" data-width="470"></div>

The problem is that the comment box don't always show for some reason. I am also using the Facebook SDK in this page too.

I don't really get this, any help would be great. Thank a lot!

share|improve this question
The javascript Facebook SDK is asynchronous isn't it? If so, it could be a loading order issue. That would explain why sometimes it works (Facebook loads before Backbone and is ready to go,) and sometimes it doesn't (Facebook is not ready.) – orangewarp Aug 20 '12 at 3:17
Your .fb-comments could end up in the DOM after the FB JavaScript does its thing due to a load ordering issue, this would appear intermittent and matches what you're seeing. The FB JS API should have something in it for manually binding things. – mu is too short Aug 20 '12 at 4:44

1 Answer

up vote 1 down vote accepted

After adding new XFBML elements to the DOM (or the HTML5 equivalent in this case), you want to call FB.XFBML.parse on the containing element in order to transform these.

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.