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.

Possible Duplicate:
Loading jScrollPane after initializing Facebook Comments - how?

I have been trying to find a way to run a JavaScript function once a Facebook comments widget has been fully loaded. I have tried running the function like this:

$(window).load(function () {
    mystuff();
});

but this sometimes runs before the widget has loaded. I have looked at the Facebook documentation and although I see I can subscribe to events like a comment being created i cant see that there is an event that would notify me once the widget is loaded.

share|improve this question
xfbml is depreciated therefore your answer to that question is depreciated. But yes possible duplicated question – Mark Regan Oct 21 '12 at 5:57
xfbml is not deprecated, fbml is. Please read the note at the end of this post. – ifaour Oct 21 '12 at 8:29
1  
I stand corrected, Facebook's documentation has lead me to believe something that's not entirely true – Mark Regan Oct 21 '12 at 10:13
I agree, they should put a similar note in the FBML documentation page to clear the confusion. – ifaour Oct 21 '12 at 12:35
Anyway this i is a duplicate and yes your original answer helped – Mark Regan Oct 22 '12 at 14:40
show 1 more comment

marked as duplicate by ifaour, Peter O., Ryan Bigg, Nik...., acheong87 Oct 22 '12 at 4:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Social widgets load in IFRAME. I've not done this myself, but you should be able to catch this event by

$('.fb_iframe_widget iframe').load(function() {
    // facebook comments ready
});
share|improve this answer

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