Accordion Page
Demonstration of the jQuery Tools Accordion. Please note the accordion CSS styles are defined in the /assets/css/tabs-accordion.css file.
Version 2.3.0
Hosted by Avoka TechnologiesDemonstration of the jQuery Tools Accordion. Please note the accordion CSS styles are defined in the /assets/css/tabs-accordion.css file.
<div id="accordion"> <h2>Overview</h2> <div id="pane"> ... content text ... </div> <h2>Chapter 1</h2> <div id="pane"> ... content text ... </div> </div>
$("#accordion").tabs("#accordion div.pane", { tabs: 'h2', effect: 'slide' });
/* root element for accordion. */ #accordion { background-color:#F0F0F0; width: 500px; } /* accordion header */ #accordion h2 { border: #F0F0F0 1px solid; cursor:pointer; } /* accordion pane */ #accordion div.pane { border:1px solid #fff; display:none; height:250px; }