To give you a simple use case - on my website, I display the comments posted by the facebook users. For each comment I display the facebook users photo using the fb:profile-pic tag and a fb like button.

This page renders properly and everything displays well. Now when the users want to read older comments, they click on the "More" link

Using Jquery, I pull the older comments and in the javascript build the content adding the fb:profile-pic and the fb:like tags

But these tags dont show up. Do we need to reload it or something. Thanks for your help

link|improve this question

you should reload it... I suggest via ajax,... – Reigel Jul 22 '10 at 3:51
how do I do that - like right now I build my entire string say comment="<div>I love icecream<br/><fb:profile-pic uid='xxx'></fb:profile-pic></div>" Then I would do $("#myswipes").html(comment); So how would I reload. – Gublooo Jul 22 '10 at 4:01
feedback

2 Answers

up vote 16 down vote accepted

First make sure the FBML is being inserted into the DOM with an inspector. If so, all you need to do is tell Facebook to convert the FBML tags to HTML tags so your browser can render it. With the Graph API you call FB.XHTML.parse http://developers.facebook.com/docs/reference/javascript/FB.XFBML.parse using the Javascript SDK. Here's an example from my code:

$('#list').append('<fb:name uid="4"></fb:name>');
FB.XFBML.parse(document.getElementById('list'));
link|improve this answer
thankyou thankyou thankyou - l love you - you saved so much of my time..........thats exactly what I needed - thanks again – Gublooo Jul 22 '10 at 7:01
thanks, really helped me too – srcastro Jul 1 '11 at 2:07
And me, that is a lovely little fix! I was using like button in ajax loaded jQuery tab and could not get it to render whatever I tried until I found this. Big upvote from me! – Rich Sep 20 '11 at 6:06
feedback

how do I do that - like right now I build my entire string say comment="<div>I love icecream<br/><fb:profile-pic uid='xxx'></fb:profile-pic></div>" Then I would do $("#myswipes").html(comment); So how would I reload.

you can use $.ajax(), say

$('a.moreComment').click(function(){
    $.ajax({
        url: 'some/url.php',
        success : function(comment){
            $("#myswipes").html(comment);
        }
    });
})

some/url.php should be in the server that can correctly render and return this line, <div>I love icecream<br/><fb:profile-picuid='xxx'></fb:profile-pic></div>

link|improve this answer
What difference does it make rendering the same line on server side vs client side. I just tried your approach it doesnt work – Gublooo Jul 22 '10 at 5:30
if you can display some/url.php in the browser with no problem, then that should work... – Reigel Jul 22 '10 at 5:46
if I return any other string - that displays fine - but when I return an fb tag string like <fb:profile-pic - it does not show up – Gublooo Jul 22 '10 at 5:52
how did you display <fb:profile-pic in the other pages then ? you can use that same thing... – Reigel Jul 22 '10 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.