A Bootstrap plugin that adds support for multiple open modals.
npm install bootstrap-multimodalnpm install bootstrap-multimodal
bower install bootstrap-multimodal
js/multimodal.js (or the minified version).
show.bs.modal and hidden.bs.modal events and either return false or call stopPropagation on the event.
js
$('#my-modal').on('show.bs.modal', function(e) {
e.stopPropagation();
});
$('#my-modal').on('hidden.bs.modal', function(e) {
e.stopPropagation();
});
``