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.

how can I get more different facebook comments on the same url? For example if I click on a link, a set of facebook comments must appear, but if I click on another link, a different set of comments must appear .I do not want to use an iframe or refresh the page . Thank you !

share|improve this question

1 Answer

Use jQuery and look at their documentation about .load() method.

$("#element").click(function(){
    $("#comments").load('comment_iframe1.html');
});
$("#element2").click(function(){
    $("#comments").load('comment_iframe2.html');
});
share|improve this answer
The problem is I don't have 'comment_iframe1.html' .Everything is in one page . – alex Aug 31 '11 at 9:15
so create it... – genesis Aug 31 '11 at 9:16
I'm unfamiliar with the exact parsing it does, but couldn't you add hash tags or variables to the end of the file name? such as comment_iframe1.html?page_id=1 or something similar? – Micharch54 Sep 15 '11 at 18:07

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.