Assuming that I have a Bootstrap Collapse:
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
Collapsible Group Item #1
</a>
</h4>
</div>
<div id="collapseOne" 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 data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
Collapsible Group Item #2
</a>
</h4>
</div>
<div id="collapseTwo" 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 data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
Collapsible Group Item #3
</a>
</h4>
</div>
<div id="collapseThree" 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>
Which element should I bind with for the following JavaScript:
$("WhichSelectorGoesHere").on('hidden.bs.collapse', function () {})
Is it possible to bind all panels by class?
Unfortunately there is no #myCollapsible
in the example in the documentation.
You can use use a link to collapse content. To do this, use the <a> tag with an href value of the ID of the content to collapse. On the collapsible content's container, add the . collapse class, and be sure to give it an ID.
Just add data-toggle="collapse" and a data-target to the element to automatically assign control of one or more collapsible elements. The data-target attribute accepts a CSS selector to apply the collapse to. Be sure to add the class collapse to the collapsible element.
In bootstrap context wise, accordion is basically a collapse button with a lot of smaller info in it. Bootstrap use card to make an accordion. on line 1, <div id="accordion" role="tablist"> , this is where the data-parent refers to. on line 2 <div class="card"> , we are using a card class, to show the card effect.
The . collapse class indicates a collapsible element (a <div> in our example); this is the content that will be shown or hidden with a click of a button. To control (show/hide) the collapsible content, add the data-toggle="collapse" attribute to an <a> or a <button> element.
When the documentation lists the available events, it's just a promise that it will always raise each particular event at a particular time.
For example, hidden.bs.collapse
will be raised whenever:
a collapsed element has been hidden from the user.
Whether or not anybody's listening to that event hasn't yet come into play.
To leverage this, or any other, event, we can use jQuery's .on()
method to attach listeners on particular html elements to see if they raise particular events.
Where we add the listener depends on where the event is going to be raised and when we want to capture it.
Let's say you have the basic HTML structure for an Accordion control:
<div class="panel-group" id="accordion"> <div class="panel panel-default" id="panel1"><!--...--></div> <div class="panel panel-default" id="panel2"><!--...--></div> <div class="panel panel-default" id="panel3"><!--...--></div> </div>
In this case, each panel
class is going to raise this event. So if want to capture it there, we just use the jQuery class selector to attach listeners to all the .panel
objects like so:
$('.panel').on('hidden.bs.collapse', function (e) { alert('Event fired on #' + e.currentTarget.id); })
In HTML, events will bubble from the innermost element to the outermost element if unhandled. So events raised for each individual .panel
, can also be handled by the entire .panel-group
(or even the body
element as they'll eventually work their way up there).
In the bootstrap examples page, they are using the id selector for the entire panel-group
, which happens to be #myCollapsible
, but in our case is #accordion
. If we want to handle the event there, we can simply change the jQuery selector as follows:
$('#accordion').on('hidden.bs.collapse', function (e) { alert('Event fired on #' + e.currentTarget.id); })
Sorry for answering such an old question but I truly hope my input helps someone else.
I found this question because I needed to know how to get the id
of the .panel
that was subject to the event that was firing.
@KyleMit was very close to the answer I needed but not quite.
This:
$('.panel').on('hidden.bs.collapse', function (e) { alert('Event fired on #' + e.currentTarget.id); })
does not fire the alert
This:
$('#accordion').on('hidden.bs.collapse', function (e) { alert('Event fired on #' + e.currentTarget.id); })
fires the alert with is
#accordion
which we do not need to get because we already know it to bind the #accordion
to in the first place.
So to get the id
of the .panel
element that is being hidden you would use e.target.id
instead of e.currentTarget.id
. Like this:
$('#accordion').on('hidden.bs.collapse', function (e) { alert('Event fired on #' + e.target.id); })
Bootstrap's collapse class exposes a few events for hooking into collapse functionality:
https://getbootstrap.com/docs/3.3/javascript/#collapse-events
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With