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.

I'm wrestling a bit with the collapse JS from bootstrap. On my website I want to use the collapse to display some content. I want, whenever the user clicks on the heading to apply the class "active" to it. It already starts out with the class "inactive". So from inactive it goes to active when you click on it. On the other hand, it should when you re-click the same heading also change back to inactive. Which is currently not what it does now.

Here is the JSfiddle: http://jsfiddle.net/Malachute/tZeT8/1/ Don't mind the collapse not working, that's working on my end and bad copied into JSfiddle.

share|improve this question
Any luck using the code below? – ckaufman Aug 20 '12 at 1:23

1 Answer

up vote 1 down vote accepted

I think you're looking for something like this. Sorry, it's not pretty:

$(function(){
var sidebar = $('.accordion-heading');  // cache sidebar to a variable for performance

sidebar.delegate('.accordion-toggle','click',function(){ 
  if($(this).hasClass('active')){
    $(this).removeClass('active');
   $(this).addClass('inactive');
 }else{
  sidebar.find('.active').addClass('inactive');          
  sidebar.find('.active').removeClass('active');   
  $(this).removeClass('inactive');
  $(this).addClass('active');
 }
});
});

Updated fiddle: http://jsfiddle.net/ckaufman/tZeT8/2/

share|improve this answer
Works. Thanks a lot :) – ANGRYKOREAMAN Aug 20 '12 at 8:04

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.