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.

Im having problems using the Facebook social plugins. If its important, I use GWT to display the code inside an HTML widjet

I put this in my html

<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";  
fjs.parentNode.insertBefore(js, fjs);   
}(document, 'script', 'facebook-jssdk'));   
</script>   
<fb:comments width="600" num_posts="2" href="http://www.woojah.com"></fb:comments>

And nothing is displayed. However, if I open the source code with firebug, and I cut that code and paste it again, it is displayed. It is as if that code needs a special "refreshing" or "reloading". By the way, I got that code from the developers.facebook.com page. It's the social plugin comment code.

Also my html tag is <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="https://www.facebook.com/2008/fbml">

So my question is: Does anyone know why the comment plugin is not displayed and why, when I cut and paste the exact same code with firebug it is displayed.

share|improve this question

1 Answer

You may want to look into using the FB.XFBML.parse() command to have the SDK reparse the page after you use GWT to insert the code inside your widget.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 17:48

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.