bootstrap modal closing event code example
Example 1: close bootstrap modal with javascript
$('#myModal').modal('hide');
Example 2: prevent bootstrap modal from closing when clicking outside
<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">
Example 3: when modal close event
$("yourid").on('hide.bs.modal', function(){
// do it here
});