Skip to content

Instantly share code, notes, and snippets.

@tkosuga
Last active December 17, 2015 08:59
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 tkosuga/5584429 to your computer and use it in GitHub Desktop.
Save tkosuga/5584429 to your computer and use it in GitHub Desktop.
twitter bootstrapのAjax tab切り替え説明
<ul class="nav nav-tabs" id="entry_tab">
 <li><a href="#hot_entries" data-toggle="tab">ホットエントリー</a></li>
<li><a href="#interest_entries" data-toggle="tab">インタレスト</a></li>
<li><a href="#favorites" data-toggle="tab">お気に入り</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="hot_entries">
 <h3>Loading...</h3>
</div>
<div class="tab-pane" id="interest_entries">
 <h3>Loading...</h3>
</div>
<div class="tab-pane" id="favorites">
<h3>Loading...</h3>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment