In addition to what Richard said, you can get the Themes functionality
simply by adding the theme classes to your particular elements.

For the most part, that would be the following classes
  ui-widget         -- the overall container
  ui-widget-content -- the body of your home grown all-open-accordion
  ui-widget-header  -- the separator bars of the accordion

This puts you in the ballpark.  Here's the full list of classes.

  http://wiki.jqueryui.com/jQuery-UI-CSS-Framework

**--**  Steve



On Feb 27, 3:08 pm, Soup <soupy_2...@hotmail.com> wrote:
> The accordion documentation page says the following:
>
> NOTE: If you want multiple sections open at once, don't use an
> accordion
>
> An accordion doesn't allow more than one content panel to be open at
> the same time, and it takes a lot of effort to do that. If you are
> looking for a widget that allows more than one content panel to be
> open, don't use this. Usually it can be written with a few lines of
> jQuery instead, something like this:
>
> jQuery(document).ready(function(){
>         $('.accordion .head').click(function() {
>                 $(this).next().toggle();
>         }).next().hide();
>
> });
>
> I've tried to do this but cannot make it work. Can someone please show
> me some simple html and the jquery that will allow the accordion to
> open multiple sections at once? I'm particularly interested in
> preserving the themes here.
>
> TIA
> Soup
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to jquery-ui@googlegroups.com
To unsubscribe from this group, send email to 
jquery-ui+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to