Onizudo
Onizudo

Reputation: 333

Dropdown menu on rails

I need to make a simple dropdown menu to my rails app, but all i can find is dropdown selects. does any1 know a good guide on making dropdown menus? just a simple menus, nothing fancy

Upvotes: 0

Views: 3048

Answers (1)

Joshua Partogi
Joshua Partogi

Reputation: 16435

Dropdown menu is not something that is built in rails and you need a javascript plugin to achieve that.

If you are using prototype as your javascript framework in your rails app, here are some of prototype+scriptaculous based dropdown menu plugin . If you are using jQuery as your javascript framework in your rails framework, here are some of jQuery based dropdown menu plugin.

Hope that helps.

Upvotes: 2

Related Questions