Skip to content

Instantly share code, notes, and snippets.

@bueckl
Created September 8, 2015 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bueckl/52004358a3bc62484259 to your computer and use it in GitHub Desktop.
Save bueckl/52004358a3bc62484259 to your computer and use it in GitHub Desktop.
Open second bootstrap modal
$('#TermsModal').on('shown.bs.modal', function () {
$('#MyModal').css('z-index', 1040);
});
$('#TermsModal').on('hidden.bs.modal', function () {
$('#MyModal').css('z-index', 1050);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment