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 problem where im using javascript to change the href of the facebook like button to change the url to a new link based on new ajax video content the user can load on the webpage. I want to make it so they can like each video based on the current one they are watching. The href is swapping out beautifully and i declared a FB.XFBML.parse(document.getElementById("fbyoutubelike")); to refresh the like button. However nothing happens and I'm not sure what to do anymore. Does anyone have a clue as to how this can be accomplished?

share|improve this question

1 Answer

up vote 1 down vote accepted

FB.XFBML.parse probably won’t re-render the tag if it sees the iframe is already there …

Instead of just manipulating the href attribute content, remove the existing like button tag (<fb:like> or <div class="fb-like">) from the DOM, insert a new one – and then call FB.XFBML.parse.

share|improve this answer
just use jquery replaceWith? – Derek Rhode Jul 12 '12 at 20:50
didnt work... so tired of this – Derek Rhode Jul 12 '12 at 22:44
Show us what exactly you tried. – CBroe Jul 13 '12 at 7:57
<script> function urlSwapper(url){ //document.getElementById("fbyoutubelike").setAttribute("href", [url]); $("#youtubelike").replaceWith('<fb:like id="fbyoutubelike" class="fb-like" href="'+[url]+'" send="false" width="450" show_faces="false"></fb:like>').delay(1500, function() { FB.XFBML.parse; });; }; </script> – Derek Rhode Jul 13 '12 at 17:10
Are you using two different element ids in that code on purpose, or …? – CBroe Jul 13 '12 at 17:16
show 4 more comments

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.