jQuery Searchable 3 Level Accordion

Hi!

Thanks for purchasing jQuery Searchable 3 Level Accordion! You will find all docs regarding the plugin below. If you need any assistance or have any suggestions regarding the plugin, don't hesitate to contact us on: support@createIT.pl.

How to implement the plugin:

One good example is better than thousand words, so just have a look at example file. You will find there XHTML/CSS/JS code that is necessary to run the plugin without any unnecessary addons. Just copy and paste it to your website and it will work (oh, did I mention that you may modify the code any way you want?).

More examples

  1. So.. you want the animation to go slower? Try this:
    $("#accordion").ctAccordion({
    	duration: 600
    });
    
    See the demo »
  2. To allow more than one node to be opened at one time
    $("#accordion").slickMenu({
    	oneOpenAtTime: false
    });
    
    See the demo »
  3. To set skin to "color": In head section:
    <link rel="stylesheet" type="text/css" href="../css/skins/color/style.css" />	
    
    In body section:
    <ul id="accordion" class="skin-color">
    
    See the demo »
  4. To open some node on page load (think of stateful menu):
    
    	...
    	<li class="expanded"><a href="#">Hello</a></li>
    	...
    
    See the demo »
  5. Change speed and easing of opening:
    <script type="text/javascript" src="js/jquery-ui-effects.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    	$("#accordion").ctAccordion({
    		easing: "easeOutBounce",
    		speed: 1500
    	});
    });
    </script>
    
    
    See the demo »

Plugin options

The plugin has following options:

Plugin provides also following methods:

Any comments?

Did you find any bug? Or maybe see any feature that would be nice to have? Or maybe just wanna say "hi"? Mail us at support@createIT.pl, we'll be glad to talk to you!