Completely Remove Bootstrap Modal In Bootstrap 2 And 3

Posted By Weston Ganger

Having closed modal's hang around in the background can be very annoying and cause unexpected selector behaviour. Here are methods to completely remove the modal when its hidden.

Bootstrap 3

/* Automatically */
$('body').on('hide', '.modal', function(e){
  $(e.target).data('modal', null);
});

/* Manually */
$('.modal').remove();
$('.modal-backdrop').remove();
$('body').removeClass( "modal-open" );

Related External Links:

Article Topic:Software Development - Javascript

Date:January 05, 2017