Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active December 12, 2018 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiiBird/f4553474334e849012d1350260fd63da to your computer and use it in GitHub Desktop.
Save iiiBird/f4553474334e849012d1350260fd63da to your computer and use it in GitHub Desktop.
bootstrap Accordion without ID
<div class="inner-collapse">
<div class="panel-group">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a role="button" href="#">
<span>Collapsible Group Item #1</span>
</a>
</h4>
</div>
<div class="panel-collapse collapse in">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="collapsed" role="button">
<span>Collapsible Group Item #2</span>
</a>
</h4>
</div>
<div class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="collapsed" role="button" href="#">
<span>Collapsible Group Item #3</span>
</a>
</h4>
</div>
<div class="panel-collapse collapse">
<div class="panel-body">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
</div>
</div>
</div>
</div>
</div>
$(document).on('click', '.inner-collapse .panel-heading a', function(e) {
if ( $(this).parents('.panel-default').find('.panel-collapse:not([id])').length > 0 ) {
e.preventDefault();
$(this).parents('.panel').siblings().find('.panel-heading a').addClass('collapsed');
$(this).parents('.panel').siblings().find('.panel-collapse').slideUp(200);
$(this).parents('.panel').addClass('active');
if ( $(this).hasClass('collapsed') ) {
$(this).parents('.panel').find('.panel-collapse').slideDown(200).addClass('in');
$(this).removeClass('collapsed');
$(this).parents('.panel').addClass('active');
} else {
$(this).parents('.panel').find('.panel-collapse').slideUp(200).removeClass('in');
$(this).addClass('collapsed');
$(this).parents('.panel').removeClass('active');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment