modal close off outside click 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: when modal close event
$("yourid").on('hide.bs.modal', function(){
// do it here
});