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.

Using Twitter Bootstrap framework, I'm using $('#foo').collapse() to make an FAQ with collapsable answers that are hidden by default, and then visible when you click the question.

The problem is that I get a flash of all the content before the .collapse() is initialized.

I can't hide the content in advance (via display: none), otherwise the collapse function doesn't know the height of the boxes and collapsing/expanding doesn't work.

I think this could be solved if $('#foo').collapse() didn't animate the initial collapse, and just instantly hid the elements. Any idea on how to do that (or other solutions)?

Here's a fiddle to play with: http://jsfiddle.net/DHZNv/44/

Thanks!

share|improve this question

1 Answer

Is this the behavior you want?

http://jsfiddle.net/DHZNv/45/

share|improve this answer
Well ... yes. But you've basically just added all the data-* attributes directly to the HTML, whereas I need to do that programmatically. Although ... did solve it by removing the "in" class from the answers, and skipping the call to .collapse(), so thank you for the hints. Final fiddle: jsfiddle.net/DHZNv/47 – Colin Jun 24 '12 at 2:46

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.