Created
January 20, 2014 17:58
-
-
Save DeanPoulin/8525354 to your computer and use it in GitHub Desktop.
Togglable Tabs Methods
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
| <ul class="nav nav-tabs" id="myTab"> | |
| <li class="active"><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> | |
| <div class="tab-content"> | |
| <div class="tab-pane active" id="home">...</div> | |
| <div class="tab-pane" id="profile">...</div> | |
| <div class="tab-pane" id="messages">...</div> | |
| <div class="tab-pane" id="settings">...</div> | |
| </div> | |
| <script> | |
| $(function () { | |
| $('#myTab a:last').tab('show'); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment