modal popup should not close when click outside code example
Example 1: bootstrap modal popup disable click outside
<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
Launch demo modal
</button>
Example 2: bootstrap modal prevent close
$('#myModal').modal({backdrop: 'static', keyboard: false})
Example 3: do not close dialog box when click outside bootstrap modal
<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">