An open API service indexing awesome lists of open source software.

https://github.com/polygonplanet/jquery.tab.js

jQuery tab plugin
https://github.com/polygonplanet/jquery.tab.js

jquery jquery-plugin tabs ui

Last synced: about 2 months ago
JSON representation

jQuery tab plugin

Awesome Lists containing this project

README

          

jquery.tab.js
==============

* A tiny jQuery tab plugin.

Installation
--------------

```html

```

Example
--------------

**HTML:**

```html



tab1

tab2

tab3



content1

content2

content3



```

**JavaScript:**

```javascript
$('#tab').tab({
triggers: ['#button1', '#button2', '#button3'],
contents: ['#content1', '#content2', '#content3'],
defaultIndex: 0,
activeClass: 'tab-active',
keyName: 'tab'
});
```

Demo
--------------

See Demo http://jsfiddle.net/polygonplanet/jZsmX/