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
- Host: GitHub
- URL: https://github.com/polygonplanet/jquery.tab.js
- Owner: polygonplanet
- Created: 2013-03-26T18:51:52.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2018-04-01T03:28:57.000Z (about 8 years ago)
- Last Synced: 2025-12-29T13:23:59.609Z (6 months ago)
- Topics: jquery, jquery-plugin, tabs, ui
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/