How do I implement Facebook commenting in a jQuery popup?
I had designed a popup with four tab using jQuery. My site have only one page, that page have some products. I show the product details, related products and comments (reviews) in the popup tabs and the content (data) is loaded using AJAX.
The comments show up fine on first time. If I close the popup and click the next product the comments are not showing. Why?
<div id="fb-root"></div>
<script>
var title = "Product_name";
var image = "product_image_ownurl";
var url = "url.html";
$("html").attr("prefix","og:http://ogp.me/ns#");
$("html").attr("xmlns:fb","http://www.facebook.com/2008/fbml");
var script = document.createElement('script');
script.src = "http://connect.facebook.net/en_US/all.js#xfbml=1";
document.getElementsByTagName('head')[0].appendChild(script);
var fb_meta = '<meta name="fb_metatitle" property="og:title" content="'+title+'">';
fb_meta = fb_meta + '<meta name="fb_metatype" property="og:type" content="website">';
fb_meta = fb_meta + '<meta name="fb_metaimg" property="og:image" content="'+image+'">';
fb_meta = fb_meta + '<meta name="fb_metaurl" property="og:url" content="'+url+'">';
fb_meta = fb_meta + '<meta name="fb_metasname" property="og:site_name" content="site_name">';
fb_meta = fb_meta + '<meta name="fb_metaappid" property="fb:app_id" content="app_id">';
fb_meta = fb_meta + '<meta name="fb_metadesc" property="og:description" content="description"/>';
$("head").append(fb_meta);
window.fbAsyncInit = function() {
FB.init({appId: 'appid', status: true, cookie: true,xfbml: true});
};
</script>
<div class="wheretobuy-fb-comment">
<fb:comments id="fb-comments" href="url.html" simple="1"></fb:comments>
</div>
While close the popup the meta data will be removed.