Answers for "disbale outside click of modal in bootstrap 5"

2

do not close dialog box when click outside bootstrap modal

<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">
Posted by: Guest on July-23-2020
0

Listen for the closing of a bootstrap modal

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

Code answers related to "disbale outside click of modal in bootstrap 5"

Code answers related to "Javascript"

Browse Popular Code Answers by Language