Answers for "bootstrap 4 modal popup on button click"

1

bootstrap 4 modal popup remote url

$('body').on('click', '[data-toggle="modal"]', function(){
        $($(this).data("target")+' .modal-body').load($(this).data("remote"));
    });
Posted by: Guest on January-19-2021
0

bootstrap modal show event

$('#code').on('shown.bs.modal', function (e) {
  // do something...
})
Posted by: Guest on June-03-2021
0

bootstrap pop modal from another modal

// Hide current modal before opening new one
$("#idModal").modal('hide');
$("#idModal2").modal() // or .modal("show");

// show 1st modal again after closing 2nd modal
$("#idModal2").on('hidden.bs.modal', () => $("#idModal").modal('show'))
// using hide.bs.modal might cause modal to stop scrolling!!!
Posted by: Guest on April-07-2021

Code answers related to "bootstrap 4 modal popup on button click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language