closing modal using jquery code example
Example 1: on modal close jquery
$('#myModal').on('hidden.bs.modal', function () {
// do something…
})
Example 2: jquery close bootstrap model
$('#modal').modal('hide');
Example 3: modal show not close jquery
jQuery('#modal_ajax').modal('show', {backdrop: 'static', keyboard: false});