Skip to content

Instantly share code, notes, and snippets.

@erezLieberman
Created April 28, 2014 11:05
Show Gist options
  • Select an option

  • Save erezLieberman/11368553 to your computer and use it in GitHub Desktop.

Select an option

Save erezLieberman/11368553 to your computer and use it in GitHub Desktop.
Bootstrap 3 accordion styling on open/closed
//Bootstrap 3 accordion styling on open/closed
$('.panel').on('show.bs.collapse', function () {
$(this).addClass('active');
});
$('.panel').on('hide.bs.collapse', function () {
$(this).removeClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment