Last active
January 2, 2016 22:58
-
-
Save lnickers2004/8372961 to your computer and use it in GitHub Desktop.
Bootstrap3: modal Dialog tabIndex="-1" -- to prevent accidental tabbing
This file contains hidden or 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
<!-- modal Dialog --> | |
<a href="#sentDialog" class="btn btn-info" data-toggle="modal">Show Dialog</a> | |
<!--.modal.fade#sentDialog>.modal-dialog>.modal-content--> | |
<div id="sentDialog" class="modal fade" tabindex="-1"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header">Thanks for clicking!</div> | |
<div class="modal-body"> | |
<p>Are you Sure?</p> | |
</div> | |
<div class="modal-footer"> | |
<button class="btn btn-success">Close</button> | |
</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment