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
| <!-- Nav tabs --> | |
| <ul class="nav nav-tabs"> | |
| <li><a href="#home" data-toggle="tab">Home</a></li> | |
| <li><a href="#profile" data-toggle="tab">Profile</a></li> | |
| <li><a href="#messages" data-toggle="tab">Messages</a></li> | |
| <li><a href="#settings" data-toggle="tab">Settings</a></li> | |
| </ul> | |
| <!-- Tab panes --> | |
| <div class="tab-content"> |
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
| $('#myTab a[href="#profile"]').tab('show'); // Select tab by name | |
| $('#myTab a:first').tab('show'); // Select first tab | |
| $('#myTab a:last').tab('show'); // Select last tab | |
| $('#myTab li:eq(2) a').tab('show'); // Select third tab (0-indexed) |
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
| $('#myTab a').click(function (e) { | |
| e.preventDefault(); | |
| $(this).tab('show'); | |
| }); |
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
| <div class="tooltip"> | |
| <div class="tooltip-inner"> | |
| Tooltip! | |
| </div> | |
| <div class="tooltip-arrow"></div> | |
| </div> |
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
| <div class="dropdown"> | |
| <a id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="/page.html"> | |
| Dropdown <span class="caret"></span> | |
| </a> | |
| <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> | |
| ... | |
| </ul> | |
| </div> |
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
| <div class="dropdown"> | |
| <a data-toggle="dropdown" href="#">Dropdown trigger</a> | |
| <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> | |
| ... | |
| </ul> | |
| </div> |
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
| <!-- Button trigger modal --> | |
| <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> | |
| Launch demo modal | |
| </button> | |
| <!-- Modal --> | |
| <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> |
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
| <div class="modal fade"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
| <h4 class="modal-title">Modal title</h4> | |
| </div> | |
| <div class="modal-body"> | |
| <p>One fine body…</p> | |
| </div> |
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
| <div class="progress"> | |
| <div class="progress-bar progress-bar-success" style="width: 35%"> | |
| <span class="sr-only">35% Complete (success)</span> | |
| </div> | |
| <div class="progress-bar progress-bar-warning" style="width: 20%"> | |
| <span class="sr-only">20% Complete (warning)</span> | |
| </div> | |
| <div class="progress-bar progress-bar-danger" style="width: 10%"> | |
| <span class="sr-only">10% Complete (danger)</span> | |
| </div> |
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
| <div class="progress progress-striped active"> | |
| <div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%"> | |
| <span class="sr-only">45% Complete</span> | |
| </div> | |
| </div> |