Answers for "bootstrap modal doesn't close on click outside"

3

bootstrap modal popup disable click outside

<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
    Launch demo modal
 </button>
Posted by: Guest on March-18-2021
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

bootstrap modal don't dismiss

<div class="modal fade" id="myModal" data-backdrop="static" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
Posted by: Guest on September-07-2020
1

bootstrap modal not close

  		$('#MymodalPreventScript').modal({
    		backdrop: 'static',
    		keyboard: false
		});
Posted by: Guest on March-10-2020

Code answers related to "bootstrap modal doesn't close on click outside"

Code answers related to "Javascript"

Browse Popular Code Answers by Language