facebook comments
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开发者_C百科 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 !
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');
});
精彩评论