Why i can\'t toggle navbar when resizing to mobile screen in angular 4 using bootstrap 4. I included it in the angular cli in script and styles, the node modules from bootst
to make toggle working in angular, you have to do only 4 things
(click)="isCollapsed = !isCollapsed"[attr.aria-expanded]="!isCollapsed"
so that property will be changed when you click(either true or false)[ngbCollapse]="isCollapsed"NB: using JQuery is not adviced
Collapse nav bar without using JQuery