Skip to content
Advertisement

How to change the accordion menu icon with JS?

I have a menu (accordion) that uses Bootstrap 3.3.7 and Font Awesome 5.0.1

What I am looking for :

When the menu is closed, a “plus” icon is displayed.

When the menu is open, a “minus” icon is displayed.

The “plus” icon is displayed on the menu but does not change.

I think there is a problem with my JS code.

JavaScript

Here is my JS code. Something is wrong with it.

JavaScript

I added a class “collapse-change-icon”, but I do not know if it’s useful and if it’s well placed.

enter image description here

Advertisement

Answer

The icon that you want to change isn’t inside the .collapse DOM element. It’s inside the .panel-heading element.

JavaScript
Advertisement