Skip to content

Instantly share code, notes, and snippets.

@jonesmac
Created March 2, 2013 19:33
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 jonesmac/5072807 to your computer and use it in GitHub Desktop.
Save jonesmac/5072807 to your computer and use it in GitHub Desktop.
Basic HTML Structure for Jquerytools tabs
<!-- 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