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 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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.