vote up 4 vote down star

I am trying to style a menu that has a static height and the content is displayed between the headers. (Please see below image. ...the right side is the view after a user clicks on Header 2)

What is this menu style called? How can I accomplish this with jQuery?

accordion menu

Edit: Thanks! I searched for accordion before asking, but I was unable to find any examples where the menu's height stays static regardless of the content.

Edit 2: This is the behavior I was looking for: Vertical concertina menu Thanks @ricebowl for providing the link.

flag

75% accept rate
It's worth pointing out, I think, that you can achieve this layout with just xhtml and css, no necessity (unless you want) to use jQuery or JS. See my answer below. – ricebowl Oct 20 at 23:53
Sure, but usually clients are demanding nowadays and want pretty little effects and animation, I don't think a super minimalistic html/css would cut it for some clients. – meder Oct 20 at 23:57
@meder, you're absolutely right; but for those willing to live with basics, it's a good resource. But I like to make it work with the basics, and enhance with the JS/jQuery. That way it still looks good -if basic- without. =) – ricebowl Oct 21 at 0:28

8 Answers

vote up 4 vote down check

I'm sure you know, by now, that this is the accordion menu style, I'll just suggest -if you're amenable to a non-jQuery option- that you visit Stu Nicholl's css-play website, where he has a pure xhtml/css version of this accordion menu style.

link|flag
Wow, that's actually pretty cool for not using a single line of script! – Gurdas Nijor Oct 20 at 23:55
Thanks for the link! I found exactly what I wanted. – Nescio Oct 21 at 0:11
1  
@Gurdas, I've found Stu Nicholl's site to be indispensable over the years for learning new things and dealing with CSS problems. His css games, though, are pure awesome: cssplay.co.uk/menu (under the heading 'Puzzles') =) – ricebowl Oct 21 at 0:34
vote up 8 vote down

This is known as an accordion menu. Here is a tutorial on how to create one using jQuery.

link|flag
vote up 5 vote down

It's called an accordion menu and it's available in jQuery UI:

http://docs.jquery.com/UI/Accordion

link|flag
vote up 1 vote down

This is accordion menu.

jQuery docs here:
http://docs.jquery.com/UI/Accordion
http://plugins.jquery.com/project/accordion

link|flag
vote up 0 vote down

this is called Accordion

link|flag
vote up 0 vote down

Vertical accordion menu

link|flag
vote up 0 vote down

This is an Accordion Menu and is available as a widget in Jquery UI - http://docs.jquery.com/UI/Accordion

link|flag
vote up 0 vote down

This is known as the Accordian Menu UI pattern. There are quite a few jQuery plugin implementations, including this one: jQuery Accordion.

More info and some good examples here:

http://ui-patterns.com/pattern/AccordionMenu

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.