bootstrap modal on close code example

Example 1: close bootstrap modal with javascript

$('#myModal').modal('hide');

Example 2: bootstrap 4 modal





Example 3: bootstrap modal prevent close

$('#myModal').modal({backdrop: 'static', keyboard: false})

Example 4: modal dismiss





Example 5: bootstrap 4 modal close event handler

$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
})

Example 6: bootstrap modal on close

$('#myModal').on('hidden.bs.modal', function () {
    // do something…
});

Tags:

Misc Example