jquery-tabslite

jquery-tabslite JS library on GitHub jquery-tabslite JS library on npm Download jquery-tabslite JS library

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.

Version 1.0.2 License MIT
jquery-tabslite has no homepage
jquery-tabslite JS library on GitHub
jquery-tabslite JS library on npm
Download jquery-tabslite JS library
Keywords
jquery-pluginecosystem:jqueryuitabs

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();