Answers for "how can i pause the function until user click the button on modal popup in jquery"

0

jquery on modal close event

$('#myModal').on('hidden.bs.modal', function () {
  // do something…
})
Posted by: Guest on September-22-2021
0

jquery works until modal is shown

$(document).on('show.bs.modal', '#reservationModal', function (e) {
    console.log('works');
});
Posted by: Guest on January-08-2021

Code answers related to "how can i pause the function until user click the button on modal popup in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language