Very simple and easy to use. Contains only a few necessary options.
Copy jquery-accordion.js file to js directory. Next just add a link to the js file before your closing tag add:
<script src="js/jquery-accordion.js"></script>
Ok, now you need to write some code in your script.js file to fire the slider:
$(document).ready(function () {
$('your-accordion-ul-selector-here').jqueryAccordion({
//If you like, you may set some option here
});
});
Slider contains only this option:
- 3 types of animation
If you want, you can change options of the accordion. Example below:
$(document).ready(function () {
$('your-accordion-ul-selector-here').jqueryAccordion({
animation: "fade"
});
});
Table with plugin options
Option | Default | Value 1 | Value 2 | Value 3 |
---|---|---|---|---|
animation | "fade" | "basic" | "fade" | "slide" |
1.0.0
The MIT License (MIT)