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 have a chunk of content that I load via Ajax, and on that page I have a FBML share button. I also tried it without the FBML and just used the hyperlink and script tag. When I load the content directly, the share button loads fine, but when I load it via Ajax, the button doesn't show up. Any ideas on how to get the Facebook Share button working?

share|improve this question

2 Answers

up vote 2 down vote accepted

I believe you need to invoke FB.XFBML.Host.parseDomTree() after your content has been inserted. This will cause the Facebook JS libraries to scan for XFBML tags and render them.

share|improve this answer
awesome, thanks - you answered this in 4 minutes! – Rob Volk Dec 2 '09 at 4:46
3  
It appears that this command has been updated to FB.XFBML.parse() (original answer by talentedmrjones) – Will Nov 15 '10 at 11:11

use this javascript function ;)

fb_sharepro_render()
share|improve this answer
Why is this better than the JavaScript SDK's FB.XFBML.parse() method? – Lix Feb 6 '12 at 18:10
i put another solution that will work also for users using the facebook share button with ajax content without the javascript SDK check this issue forum.developers.facebook.net/viewtopic.php?id=53105 – fareed namrouti Feb 7 '12 at 16:48
Thank u, works when using the (old) share button sdk. – Blauesocke Feb 15 '12 at 20:51
you are welcome :) – fareed namrouti Feb 19 '12 at 16:08

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.