dns-daniel
6/9/2018 - 10:30 PM

Stack Bootstrap Modals when Opened Inside/From Other Modals

// Stack Bootstrap Modals when Opened Inside/From Other Modals

$(document).on('show.bs.modal', '.modal', function (event) {
  var zIndex = 1040 + (10 * $('.modal:visible').length);
  $(this).css('z-index', zIndex);
  setTimeout(function() {
    $('.modal-backdrop').not('.modal-stack').css('z-index', zIndex - 1).addClass('modal-stack');
  }, 0);
});