tags:

views:

34

answers:

2

I need to modify a dropdown list: http://dl.dropbox.com/u/72686/now.png

to this widget (not sure how to define it): http://dl.dropbox.com/u/72686/later.png

I can use jQuery for it.. or maybe there is a html form element ?

thanks

A: 

You may take a look at this jquery plugin allowing you to customize the look and feel of the default dropdown boxes.

Darin Dimitrov
uhm, it looks great, but I need to download jQueryUI and jQueryUI Theme as well, in order to use it. I was wondering if there is a simpler solution for this small change.
Patrick
A: 

I've solved in a very very simple way:

I just removed the attribute size from html code:

<select size="5">

to

<select>
Patrick