Skip to content

Instantly share code, notes, and snippets.

@allusis
Last active December 17, 2015 06:08
Show Gist options
  • Save allusis/fb4473b503ba239ee12a to your computer and use it in GitHub Desktop.
Save allusis/fb4473b503ba239ee12a to your computer and use it in GitHub Desktop.
Expand / Collapse text toggling for Bootstrap3
$(function () {
var active = true;
$('#expand-btn').click(function() {
if (active) {
active = false;
$('.collapse:not(.in)').collapse('show');
$('.panel-header').attr('data-toggle', 'collapse');
$(this).text('Collapse all sections');
} else {
active = true;
$('.collapse').collapse('hide');
$('.panel-header').attr('data-toggle', 'collapse');
$(this).text('Expand all sections');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment