
$(document).ready(
  function()
  {
    /* On Add Comment Action the iframe will be replacing the wp rendered comments */
    $("#showFacebookComments").click(function() {
        
         $baseUrl= $('#baseUrl').val();
         $postUrl= $('#postUrl').val();
         
         $.ajax({
            url: $baseUrl+'/wp-content/plugins/glg_comments/js/iframefacebook.html',
            success: function(data) {
              
              $('#facebook-rendered').empty();
             
             $('#facebook-rendered').replaceWith( data + '<fb:comments href="'+ $postUrl +'" num_posts="10" width="'+($('#facebook-rendered').width()-50)+'"></fb:comments></div>' );
            }
         });
    });
  }
);

