disable click outside of bootstrap modal area to close modal code example

Example 1: 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 2: do not close dialog box when click outside bootstrap modal

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

Example 3: bootstrap modal not close

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