Skip to content

luminosity-group/jquery-tabs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Tabs

Simple tabs plugin for jQuery.

Features

  • Updates window.location.hash when a tab is activated.
  • Activating a tab on window load based in the content of window.location.hash

Setup

Use the following markup:

<div class="tabs">
    <ul class="tabs_nav">
        <li rel="#cats">Cats</li>
        <li rel="#dogs">Dogs</li>
    </ul>
    <div class="tabs_content">
        <div id="cats">
            I LOVE CATS!
        </div>
        <div id="dogs">
            I LOVE DOGS!
        </div>
    </div>
</div>

Running the specs

To run the specs with selenium and firefox:

$ rake

Releases

No releases published

Packages

No packages published