Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/msankhala/jquerytabs

Simple jquery tabs plugin which also change the url hash with the tab id. Or add the tab id in url to directly go to that tab.
https://github.com/msankhala/jquerytabs

Last synced: about 2 months ago
JSON representation

Simple jquery tabs plugin which also change the url hash with the tab id. Or add the tab id in url to directly go to that tab.

Awesome Lists containing this project

README

        

## Simple jquery tab plugin
Simple jquery tabs plugin which also change the url hash with the tab id. Or add the tab id in url to directly go to that tab.

Add the markup like this

```html


  • item1

  • item2

  • item3


tab1conetnt

tab2conetnt

tab3conetnt


```

And calle the tabs() function in document.ready() like this:

```javascript
$("ul#tabs").tabs("#container");
```