Answers for "disable modal to close on click on other area"

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 "disable modal to close on click on other area"

Browse Popular Code Answers by Language