Answers for "ways to disable and enable modal closing on click button"

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
0

modal don't close when click outside

<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
    Launch demo modal
 </button>`
Posted by: Guest on July-29-2021

Code answers related to "ways to disable and enable modal closing on click button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language