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.

The content within the app is being updated using XHR. This involves changing the URL of the comment box:

<div class="fb-comments" data-href="http://example.com?id=[dynamic]" data-num-posts="2" data-width="470"></div>

Upon creating a new Facebook widget placeholder after the page been fully loaded, how do I request Facebook JS SDK to render new elements on the page?

share|improve this question

1 Answer

up vote 2 down vote accepted

Call the JavaScript SDK's FB.XFBML.parse(); function after you dynamically insert the fb-comments div.

See: http://developers.facebook.com/docs/reference/javascript/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.