I have a Bootstrap Accordion with a check box inside each of the accordion panel. When I check the checkbox inside of a panel, its parent should collapse and the next panel should open.
I am using the jQuery icheck plugin for styling checkboxes. So what I can do to make the accordion panels collapse? FIDDLE
$('.item1').on('ifChecked', function(event){
});
If I understood you correctly, you might want something like that:
Updated code:
First fiddle here: http://jsfiddle.net/sap1ruq2/1/
UPDATED fiddle here: http://jsfiddle.net/bstjmdLp/
Let me know if this was what you needed!