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 any way to catch when the collapse menu appears (or when collapse button is clicked by user) ?

i'm using standard bootstrap twitter framework and classes.

share|improve this question
You want to catch the collapse event on your whole document or just a section/specific menu? – Andres Ilich May 18 '12 at 12:13

2 Answers

up vote 2 down vote accepted

It looks like the plugin is adding the class "in" to the active collapse group. So maybe you could do something like.

if( $('#collapseOne').hasClass('in') ){
..do something
}

EDIT:

Okay, I don't have anyway of testing right now, so these are kind of just guesses. I am sure you could easily determine when a collapse link was clicked by doing this.

$('.accordion-toggle').click(function(){
   console.log('clicked');
});

However if you wanted to know exactly which one was clicked you would probably have to index them.

share|improve this answer
uhm not working .. – okok May 17 '12 at 19:33

Use the "shown" event handler:

$("#accordion").on("shown",function(event){
        collapse_element = event.target;
    });

Refer to: http://twitter.github.com/bootstrap/javascript.html#collapse to see the other events supported

share|improve this answer

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.