prevent modal from closing on backdrop click code example
Example 1: prevent bootstrap modal from closing when clicking outside
<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">
Example 2: disable close from screen modal popup
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>
<script>
$('#myModal').modal({backdrop: 'static', keyboard: false})
</script>
Example 3: bootstrap modal prevent close
$('#myModal').modal({backdrop: 'static', keyboard: false})
Example 4: 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="#">
Example 5: how to stop user from clicking outside alert box js
allowOutsideClick: false