I\'m using Bootstrap to make collapsible nested divs/buttons. I want to collapse all siblings of a div when it is expanded and to collapse all children of a div when it is colla
you can try below code -
$('.accordion-toggle').click(function(){ $(this).parent() .find("i.indicator") .toggleClass('fa-caret-down fa-caret-up'); });