Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set height of ListBox to auto

I have a Html ListBox:

 <select id="targetField" multiple="multiple" name="D1" style="width:200px;">
              <option>INDIA</option>
              <option>USA</option>
              <option>UK</option>
              <option>AUSTRALIA</option>
              <option>RUSSIA</option>
              <option>FRANCE</option>
              <option>HOLLAND</option>
 </select>

I need to set the height of this to auto i.e I do not want scrollbar to appear.

I tried Height:auto; But it is not working in IE.

How should I do this?

like image 941
Niraj Choubey Avatar asked Oct 29 '10 08:10

Niraj Choubey


2 Answers

Set the size property to the number of items, like this:

<select id="targetField" multiple name="D1" style="width:200px;" size="7">

If you need to do it programmatically, you can set all <select> elements to their option length, like this:

$("select").attr("size", function() { return this.options.length; });

You can test it out here.

like image 62
Nick Craver Avatar answered Oct 24 '22 00:10

Nick Craver


You can modify it using 'line-height' eighter and putting values to 'height'.

<select id="targetField" multiple="multiple" name="D1" style="width:200px; line-height:27px; float:left; height:130px;">
              <option>INDIA</option>
              <option>USA</option>
              <option>UK</option>
              <option>AUSTRALIA</option>
              <option>RUSSIA</option>
              <option>FRANCE</option>
              <option>HOLLAND</option>
</select>

Hope this helps.

like image 39
Jeff Norman Avatar answered Oct 24 '22 00:10

Jeff Norman