Created
March 2, 2013 19:33
-
-
Save jonesmac/5072807 to your computer and use it in GitHub Desktop.
Basic HTML Structure for Jquerytools tabs
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
<!-- the tabs --> | |
<ul class="tabs"> | |
<li><a href="#">Tab 1</a></li> | |
<li><a href="#">Tab 2</a></li> | |
<li><a href="#">Tab 3</a></li> | |
</ul> | |
<!-- tab "panes" --> | |
<div class="panes"> | |
<div>First tab content. Tab contents are called "panes"</div> | |
<div>Second tab content</div> | |
<div>Third tab content</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment