I want to make a select box like this
with 10 select option, when I try to add more than 15 option it show vertical scroll bar, but not show when it have 10 option.
is there any way to achieve this.
I want to make a select box like this
with 10 select option, when I try to add more than 15 option it show vertical scroll bar, but not show when it have 10 option.
is there any way to achieve this.
Size attribute specifies the number of visible options in a drop-down list. If the value of the size attribute is greater than 1, but lower than the total number of options in the list, the browser will add a scroll bar to indicate that there are more options to view.
So use <select size="10">..</select>
apply a
size="10"
to your select.something like:
You have to put some style to the label like border, background-image etc.
Something like this to be done:
then use this jQuery code:
Demo @ Fiddle
Try with this:
As you commented:
when size is greater then 1 of select tag, its not showing blue background in hover, when i add background through css option:hover, its working in FF, but not in chrome and safari.
so you can mockup with this:
Demo with hover class.