vote up 1 vote down star

Hi,

What jQuery plugins exist for a vertical hover accordion? I am looking for a plugin to be used for a menu where:

  • sub-menu items will only expand after a second being hovered over (so something that perhaps uses the hoverIntent plugin);
  • it can degrade gracefully if Javascript is turned off; and
  • will collapse/close any sub-menu item when the mouse moves completely off it.

thank u very much!

flag

Like Ekeko said, jQuery UI is the way to go. But just a word of warning: This kind of accordion is f**ing annoying and makes me turn off JavaScript just for you... – christian studer Apr 3 at 6:48
1  
I agree with you, but try convincing my client that! – Shalan Apr 3 at 7:04

2 Answers

vote up 1 vote down check

You can try jquery UI accordion. It has a lot of options and you can customize it, too.

link|flag
thanx Ekeko, I'll look into it. I believe its the same one developed by "bassistance.de" I'll look into it more carefully and see how I can tweak it – Shalan Apr 3 at 7:06
vote up 0 vote down

I could be wrong, but I think there may be inherent problems with using a mouseover or mouseenter event to control a vertical accordion -- unless you really know what the submenus are going to be like.

The problem lies in the what-if: you have a long list of items in a submenu, and some short submenus or single menu items that follow below. like this:

  • menu
    • 1
    • 2
      • a
      • b
      • c
      • d
      • e
      • f
    • 3
    • 4
    • 5
      • a
      • b
      • c

So when you move from #2 to #3, #2 collapses, putting your pointer way down the list. You fire all the mouseover/out or mouseenter/leave events for #3, #4, #5... and maybe move past the whole menu... things can start bouncing around like crazy.

Maybe the hoverIntent plugin can be made to work, but I think just using the mouse click is a more elegant solution. At least for an abstracted list, that is.

link|flag

Your Answer

Get an OpenID
or

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