bootstrap modal on close event code example
Example 1: close bootstrap modal with javascript
$('#myModal').modal('hide');
Example 2: bootstrap modal prevent close
$('#myModal').modal({backdrop: 'static', keyboard: false})
Example 3: bootstrap on hidden bs modal
$('#myModal').on('hidden.bs.modal', function (e) {
// do something...
})
Example 4: when modal close event
$("yourid").on('hide.bs.modal', function(){
// do it here
});
Example 5: bootstrap modal not close
$('#MymodalPreventScript').modal({
backdrop: 'static',
keyboard: false
});