I am coding a big website but I have cut down my problem into the following tiny html file:

http://dl.dropbox.com/u/3224566/test.html

The problem is that if I (re)load with JQuery a content that features a facebook code, the latter won't appear, even if I reload the script (leading to a duplication of that all.js script, which is another issue).

How can I fix this?

Regards, Quentin

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use the FB.XFBML.parse() docs after you load the new content

function loadPage() {
  $('#test').load('test.html #test', function() {
    FB.XFBML.parse( );
  }).fadeOut('slow').fadeIn('slow');
}

Note, that loading a fragment with id test in a div with id test will create multiple (two) elements with the same id (nested in each other) in the page, which should never happen as it is invalid.

To avoid this use the more verbose $.get method

$.get('test.html', 
        function(data) {
                    var temp = $('<div>').html(data).find('#test');
                    $('#test').html(temp.html());
              }
      );
link|improve this answer
Thank you very much for your answer. Just picking up the double id test thing, how would it be most elegant to solve? – denisq Jun 14 '11 at 19:29
1  
@denisq, updated answer with a workaround for the issue with the multiple ids.. – Gaby aka G. Petrioli Jun 14 '11 at 23:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.