How to open a new Modal, AND close the existing Modal
Posted: Tue Sep 30, 2025 4:45 pm
(Bootstrap 4, PHP 7)
In my store, I have a modal. Within that modal, I have a button that opens a 2nd Modal:
This works, but the first Modal is still open. How can I open the 2nd Modal AND close the 1st?
TIA
Malcolm
In my store, I have a modal. Within that modal, I have a button that opens a 2nd Modal:
Code: Select all
<div data-toggle="modal" data-target="#ModalLogin">
<?php echo tep_draw_button(IMAGE_BUTTON_CHECKOUT, 'fas fa-angle-right', NULL , 'primary', NULL, 'btn-success'); ?>
</div>
TIA
Malcolm