That functions almost perfect, its just missing two small things. The
hover switch css and the first draw loaded default.first draw load as
default.

Thanks for the link, ive implemented that for now, and just added the
hover function by adding this code:

                .hover(function() {
                        $(this).toggleClass("ui-state-hover");
                },
                function() {
                        $(this).toggleClass("ui-state-hover");
                })

As soon as I figure out how to get the first draw to load expanded,
ill be good to go.

One other thing id like to add is the ability to reorder the draws,
but alas thats a whole different thing.

On Apr 25, 10:46 am, "Richard D. Worth" <rdwo...@gmail.com> wrote:
> Check out this thread
>
> http://groups.google.com/group/jquery-ui/browse_thread/thread/fb0096e...
>
> There's a referenced code sample:
>
> http://paste.pocoo.org/show/105888/
>
> Not a plugin, but should get you started.
>
> - Richard
>
> On Sat, Apr 25, 2009 at 1:12 AM, DanN <danny_no...@yahoo.co.uk> wrote:
>
> > I am new to jQuery and wrote a tool for my job that uses the accordion
> > and tab plugins a lot.
>
> > However, I find the ability to only load one draw at a time to be
> > limiting.
>
> > I am looking for a plugin that functions exactly like the accordion
> > and processes the HTML in the exact same way, while using the standard
> > UI css that allows for more than one draw to be open at any time. I
> > still want the first draw to be loaded first, and would like a 2nd
> > click on a draw header to collapse the draw.
>
> > Anyone care to either assist or help out? I have dabbled, but
> > everything I have tried so far requires css be added to the base html
> > which I do not want.
>
> > I want this:
>
> > <div id="multipane">
> >  <div>
> >    <a href="#">First header</a>
> >    <div>First content</div>
> >  </div>
> >  <div>
> >    <a href="#">Second header</a>
> >    <div>Second content</div>
> >  </div>
> > </div>
>
> > To be handled just like the accordion would handle it, while allowing
> > more than one draw to be open at once.

Reply via email to