1.0.2 • Published 9 years ago

jquery-tabslite v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

tabsLite

Description

A lighter version of jQuery UI's tabs. For when you just need simple tab functionality and don't need to include the entire jQuery UI library.

Open example.html for example usage.

Required HTML

<div id="tabs">
  <ul>
    <li><a href="#tab-1">Tab One</a></li>
    <li><a href="#tab-2">Tab Two</a></li>
  </ul>
  <div id="tab-1">
    <p>Tab one.</p>
  </div>
  <div id="tab-2">
    <p>Tab two.</p>
  </div>
</div>

Required JavaScript

$('#tabs').tabsLite();

Links