0

I would like to know how to add a vertical scroll bar in the select/option control in order to limit the height. Please take a look at the following URL, look at the select/option control in the vehicle make (select year first), I want to do something like this.

https://www.lowestrates.ca/autoquoteon

I did a search in stackoverflow.com and I found a lot of discussion(s) in this topic, but I dont find anybody having answers.

I prefer JavaScript or JQuery and nothing else.

Thank you.

Isaac
  • 406
  • 2
  • 8
  • 16

1 Answers1

0

Use the size attribute for the select tag to limit the number of options w3c select

<select size="3" > <options...../> </select>

Luca Regazzi
  • 1,345
  • 1
  • 11
  • 23