[jQuery] Re: Accordian functionality

2009-12-08 Thread MorningZ
Here's a simple example based on your class names http://jsbin.com/ayate/edit On Dec 8, 9:40 am, Aaron Gusman ict.aarongus...@gmail.com wrote: I'd like to create my own type of accordian however I am finding difficulty with creating the query for selection. Say I have a div with another two

[jQuery] Re: Accordian functionality

2009-12-08 Thread Aaron Gusman
Thank you for that. This suits my requirements. However, is there a way to do .. sort of... subqueries??? First a selector, than another selection filter over the result. Example: var AllSideBoxes = $(.SideBox); //gets all sideboxes var SomeItems = $(AllSideBoxes).SubQuery(.SideItem); //gets

[jQuery] Re: Accordian functionality

2009-12-08 Thread MorningZ
is there a way to do .. sort of... subqueries??? http://docs.jquery.com/Traversing/find#expr On Dec 8, 2:28 pm, Aaron Gusman ict.aarongus...@gmail.com wrote: Thank you for that.  This suits my requirements.  However, is there a way to do .. sort of... subqueries???  First a selector, than

[jQuery] Re: Accordian functionality

2009-12-08 Thread al...@ourlaughingplace.com
Have you tried using ui-accordion in jQuery-ui ? On Dec 8, 9:40 am, Aaron Gusman ict.aarongus...@gmail.com wrote: I'd like to create my own type of accordian however I am finding difficulty with creating the query for selection.