We found the jQuery Easy Accordion plugin to be very useful while creating the new homepage for INDATA. We ran into a small issue when we needed the accordion to stop after a single cycle, by default the plugin does not support this, so we modified the plugin to include this new option.
The new variable is called “continuous”, it is set to true by default. Setting it to false will cause the slideshow to stop automatically rotating after the last slide has been displayed. Here’s a little usage example:
jQuery('#featuredSlides').easyAccordion({
slideNum:false,
autoStart: true,
slideInterval: 6000,
continuous: false
});
You can also review INDATA’s homepage to see this in action.
This has been tested in IE7, IE8, IE9, Firefox, Chrome & Safari.
Questions? Suggestions? Leave a comment and we’ll do what we can to help.