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 webpage which will dynamically load the next page when you scroll to the bottom, once the new page loads I want to be able to render all the Facebook like buttons that are new but not all the ones that have already been rendered.

I am at a bit of a loss as to where I have gone wrong with this and any help would be much appreciated, thanks.

Javascript code:

$('.fb-like:not(.fb_edge_widget_with_comment)').each(function(index, element) {
    $(element).attr('id', 'ajax-fb-like');
    FB.XFBML.parse(document.getElementById('ajax-fb-like'));
    $(element).removeAttr('id');
});

Facebook like button code:

<div class="fb-like" data-href="http://url.com/" data-send="false" data-layout="button_count" data-width="450" data-show-faces="true"></div>
share|improve this question
a good place to search for this facebook.stackoverflow.com. you may as well call FB.init() again and it will re-render all the elements on the page – pocesar Jan 23 at 3:22
I am trying to avoid re-rendering all the elements, as after a while there will be a lot that will require re-rendering. I would much rather just render them once each. – Rambomst Jan 23 at 3:24

1 Answer

up vote 2 down vote accepted

You can change your like buttons to XFBML and use FB.parse() to make your buttons dynamically.

http://developers.facebook.com/docs/reference/plugins/like/

http://developers.facebook.com/docs/reference/javascript/FB.XFBML.parse/

share|improve this answer
I see where I went wrong, I was using the HTML5 code for Facebook like button rather than the XFBML code, thank you :) – Rambomst Jan 23 at 3:44

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.