Bootstrap 5 data-bs-toggle vs data-toggle. Adding the bs breaks my whole Popper

I’m one month into learning Web Development. From what I’ve read, the data-bs-toggle is the newer name for Bootstrap 5. What is the difference between Bootstrap data-toggle vs data-bs-toggle attributes? My code is simple. In the head, I’ve included CSS, jQuery, and JavaScript Bundle with Popper. In the body, I have two links with a… Read More Bootstrap 5 data-bs-toggle vs data-toggle. Adding the bs breaks my whole Popper

How to close the popup modal when we click on save or cancel button

I have an angular application, In that I have created the popover using angular. .component.html <div class="form-group popover-form"> <textarea class="form-control" id="power" maxlength="1500" [(ngModel)]="name" name="name"></textarea> </div> <div> <button class="btn btn-default cancel-btn">CANCEL</button> <button type="button" (click)="show = true" >SAVE</button> </div> </div> <p *ngIf="show">{{name}}</p> So when I add some content in textarea and click on the save button I… Read More How to close the popup modal when we click on save or cancel button