close bootstrap modal popup when click outside code example

Example 1: bootstrap vue modal do not close on click outside

<b-modal
    no-close-on-backdrop
>
	// code....
</b-modal>

Example 2: prevent bootstrap modal from closing when clicking outside

<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">

Example 3: disable close from screen modal popup

<!-- opening with html, the key is the data-backdrop="static" attribute -->
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
    Launch demo modal
 </button>
 
<script>
//Opening with JS:
$('#myModal').modal({backdrop: 'static', keyboard: false})  
</script>

Example 4: bootstrap modal prevent close

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

Tags:

Misc Example