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.

Is there an "onComplete" state or similar for the Facebook Comments plugin? I'm trying to add a jScrollPane scrollbar to a content box that has FB Comments inside it. What happens is I get the FB Comments iframe placed on top of the box's content (as if it had an absolute position / was floating. Guessing this has to do with FB Comments initializing after jScrollPane.

Edit:

Now what I'm really after is combining ColorBox, Facebook Comments and jScrollPane and the headache starts pretty soon:

$('.mybox').colorbox({  innerWidth: 640, innerHeight: 480, scrolling: false, onComplete: function() {
    $('#cboxLoadedContent').jScrollPane({
// Init FB Comments here instead? Then call jScrollPane?
      showArrows: true,
      scrollbarWidth: 15,
      scrollbarMargin: 0
      });
    }, 
    onClosed: function() {
// What would happen here if I need to listen for FB Comments also?
      $('#cboxContent').jScrollPaneRemove(); 
    }
    });

Sorry if my question is a bit unclear, it's late and I've been in front of a screen for 10+ hours.

share|improve this question

1 Answer

up vote 1 down vote accepted

Using the xfbml.render event:

FB.Event.subscribe('xfbml.render', function() {
    console.log('Loaded!');
});
share|improve this answer
Hm... Would you happen to know how to tie these two together with ColorBox? I have a ColorBox, that when opened will include a Facebook Comment iframe. The box will also feature a jScrollPane. Let me edit the original post and I'll show you what I mean. – Staffan Estberg Oct 2 '11 at 21:46
Here's an idea...1) try reading the ColorBox documentation 2) inside this event trigger add your jScrollPane code needed...3) try it again...4) and again....5) if it didn't work...ask a new question with your code and explanation of what you've tried – ifaour Oct 2 '11 at 21:52
Got it :) Thanks for filling in with that FB event snippet. – Staffan Estberg Oct 3 '11 at 0:05
You are welcome! – ifaour Oct 3 '11 at 6:43

Your Answer

 
discard

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

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