Answers for "I click the button inside the modal but the modal does not close"

0

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

prevent close modal when click outside

$('#myModal').modal({
    backdrop: 'static',
    keyboard: false
})

or in HTML
<a data-controls-modal="your_div_id" data-backdrop="static" data-keyboard="false" href="#">
Posted by: Guest on February-02-2021

Code answers related to "I click the button inside the modal but the modal does not close"

Code answers related to "Javascript"

Browse Popular Code Answers by Language