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 append a Facebook like button to a certain div using dynamic URL's. Please take a look at this simple example for dynamic URL: JsFiddle

So now I put the code inside ajax call but it doesn't work: JsFiddle

The weird thing is that when I look at the source with chrome developer I can see the like button with appropriate URL is there. But it doesn't show because dimensions are 0 x 0 ...

share|improve this question

1 Answer

Related stackoverflow post: Why is my Facebook Like button broken?

Because the facebook script goes through the DOM to get the like buttons, and you've added these buttons after the fact, you have to tell it to look again. It would appear that FB.XFBML.parse(); would be the key to this.

share|improve this answer
Thanks,makes sence, looking in to it – Youss Sep 21 '12 at 12:50

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.