Last active
August 16, 2018 11:11
-
-
Save epexa/8a181574a77d6821356c80acb0fa8f35 to your computer and use it in GitHub Desktop.
bootstrap.native issue #235 https://github.com/thednp/bootstrap.native/issues/235
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | |
<div class="modal" id="first-modal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
First modal | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="modal" id="second-modal"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-body"> | |
Second modal | |
</div> | |
</div> | |
</div> | |
</div> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | |
<script> | |
$('#first-modal').modal('show'); | |
setTimeout(function() { | |
$('#second-modal').modal('show'); | |
}, 3000); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment