close modal bootstrap javascript 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 4 modal close event handler
$('#myModal').on('hidden.bs.modal', function (e) {
})
Example 4: bootstrap modal not close
$('#MymodalPreventScript').modal({
backdrop: 'static',
keyboard: false
});
Example 5: bootstrap 4 hide modal via javascript
$('#myModal').modal('hide')