Please bring this up over on the jQuery UI list: http://groups.google.com/group/jquery-ui
Thanks. - Richard On Thu, Apr 23, 2009 at 8:30 AM, Nico <nicope...@gmail.com> wrote: > > I have a simple Accordion which I have given the settings: > > $("#accordion").accordion({ > event: "mouseover", > header: "h3", > active: false, > collapsible: true, > autoHeight: true > }); > > > And has layout: > > <div id="accordion"> > <h3 class="featured-pic-container">111</h3> > <div> > <p>AAA</p> > </div> > <h3 class="featured-pic-container">222</h3> > <div> > <p>BBB</p> > </div> > <h3 class="featured-pic-container">333</h3> > <div> > <p>CCC</p> > </div> > </div> > > > I would like the whole accordion to collapse upon mouseout, but > collapsible:true doesn't seem to do this. Any suggestions? > > Many thanks, > > Nico