Jorre
Jorre

Reputation: 17581

Create a styled Dropdown like on jquery UI

On http://jqueryui.com/demos/accordion/ at the top right corner, you can see a dropdown that says "Theme: UI Lightness" by default.

I'd love to create such an interactive element in my web application. Does anyone know of a good jquery plugin to easily do this?

Upvotes: 24

Views: 59269

Answers (1)

Sampson
Sampson

Reputation: 268354

A nice example of a plugin exists here. Enabled by nothing more than $('select').selectmenu();.

Upvotes: 29

Related Questions