Super simple Multi-level accordion jQuery plugin
This Jquery plugin makes creating accordions pain free. Just create an ul list and call the accordion javascript method and it is all done! Also it is super lightweight, just around 0.5kb. This Accordion script sets no limit for the depth of your accordion. You can make it as many level as you want.
This Jquery plugin makes creating accordions pain free. Just create an ul list and call the accordion javascript method and it is all done! Also it is super lightweight, just around 0.5kb. This Accordion script sets no limit for the depth of your accordion. You can make it as many level as you want.
How to use Accordion
It is very easy to use Accordion. All you need to do is to create an ul-list, fill it with a couple of li-elements and div-elements for the content; In the example below if you click on New York the div element containing Information about New York will show.
<ul> <li> <a href="#america">America</a> <ul> <li> <a href="#america-newyork">New York</a> <div>Information about New York</div> </li> <li> <a href="#america-sanfransisco">San Fransisco</a> <div>Information about San Fransisco</div> </li> </ul> </li> <li> <a href="#antarctica">Antarctica</a> <div>Information about Antarctica</div> </li> </ul>
When you have created the necessary html code you need to include the javascript file with the plugin and call the accordion method. See the demo for a more detailed example.
$('ul').accordion();
Linking to a level inside the accordion
Notice the href-attributes on each a-element. If you in the html code example above create a link to #america-newyork and click it the accordion will open up ‘New York’ and all it’s parents.
You might also like
Tags
accordion accordion menu animation navigation animation navigation menu carousel checkbox inputs css3 css3 menu css3 navigation date picker dialog drag drop drop down menu drop down navigation menu elastic navigation form form validation gallery glide navigation horizontal navigation menu hover effect image gallery image hover image lightbox image scroller image slideshow multi-level navigation menus rating select dependent select list slide image slider menu stylish form table tabs text effect text scroller tooltips tree menu vertical navigation menu