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.