I have an issue in changing class for the element collapsed but with my code it is changing class for every element.
$('.panel-heading').click(function(){
$(this).next('.panel-body').slideToggle('fast');
$('.panel-handle').toggleClass('glyphicon glyphicon-minus icon-window');
});
How can I change the class only for the respective element?
panel-handleelement in relation to the clickedpanel-headingelement