Last active
December 17, 2015 06:08
-
-
Save allusis/fb4473b503ba239ee12a to your computer and use it in GitHub Desktop.
Expand / Collapse text toggling for Bootstrap3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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