IE Input Select Box - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:33:09Zhttp://stackoverflow.com/feeds/question/719950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/719950/ie-input-select-box2IE Input Select Boxmattt2009-04-06T00:32:54Z2009-06-13T16:07:42Z
<p>I'm looking for the easiest solution to fixing a problem I have in Internet Explorer (6,7 & 8), be it CSS or using jQuery. I have a SELECT Input with a defined width (because of where it sits in the layout). Because of the defined width select is cut off from showing their full values, unlike in Firefox & Safari where they are automatically resized to show the whole length of the value..</p>
<p>Surely this is a common problem? Any ideas?</p>
<p>example code:</p>
<pre><code><select id="Grouping_662066" class="productSelectInput" name="AddToCart_Grouping" onchange="DrawProduct(36331,662066,this.value,'',true);">
</select>
</code></pre>
<p>I'm using a CMS system the class '<code>productSelectInput</code>' is the only identifier what will be consistand across the website. The <code>ID</code>, <code>name</code> and <code>onchange</code> properties will change.</p>
http://stackoverflow.com/questions/719950/ie-input-select-box/719955#7199551Answer by jerebear for IE Input Select Boxjerebear2009-04-06T00:36:24Z2009-04-06T00:36:24Z<p>Given those constraints, the only thing I can suggest for the IE's is to possibly reduce the size of the fonts.</p>
<p>I'm not certain there's a way otherwise.</p>
http://stackoverflow.com/questions/719950/ie-input-select-box/719970#7199700Answer by macaco for IE Input Select Boxmacaco2009-04-06T00:50:05Z2009-04-06T00:58:46Z<p>As far as I'm concerned, this is a browser issue (IE).</p>
<p>You can include &nbsp; to wrap the options or resize the select dynamically with Javascript on focus and blur events.
Also, you could create a drop-down menu with css and javascript (no 'select', but 'ul') and have full control of the interface. (onBlur, javascript should write a the value on a hidden input).</p>
http://stackoverflow.com/questions/719950/ie-input-select-box/719977#7199773Answer by Angel Chiang for IE Input Select BoxAngel Chiang2009-04-06T00:55:42Z2009-04-06T00:55:42Z<p><a href="http://css-tricks.com/select-cuts-off-options-in-ie-fix/" rel="nofollow">Here</a> is information and a solution using jQuery.</p>
http://stackoverflow.com/questions/719950/ie-input-select-box/723039#7230390Answer by wheresrhys for IE Input Select Boxwheresrhys2009-04-06T20:18:34Z2009-04-06T20:18:34Z<p>if ie8 supports the psuedo-class :focus you could specify a larger width for when the select is clicked. Won't work in ie6 though, and probably not ie7</p>
http://stackoverflow.com/questions/719950/ie-input-select-box/990938#9909380Answer by david for IE Input Select Boxdavid2009-06-13T16:07:42Z2009-06-13T16:07:42Z<p>it seems to do not work with internet explorer 8</p>