IE Input Select Box - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:33:09Z http://stackoverflow.com/feeds/question/719950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/719950/ie-input-select-box 2 IE Input Select Box mattt 2009-04-06T00:32:54Z 2009-06-13T16:07:42Z <p>I'm looking for the easiest solution to fixing a problem I have in Internet Explorer (6,7 &amp; 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 &amp; 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>&lt;select id="Grouping_662066" class="productSelectInput" name="AddToCart_Grouping" onchange="DrawProduct(36331,662066,this.value,'',true);"&gt; &lt;/select&gt; </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#719955 1 Answer by jerebear for IE Input Select Box jerebear 2009-04-06T00:36:24Z 2009-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#719970 0 Answer by macaco for IE Input Select Box macaco 2009-04-06T00:50:05Z 2009-04-06T00:58:46Z <p>As far as I'm concerned, this is a browser issue (IE).</p> <p>You can include &amp;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#719977 3 Answer by Angel Chiang for IE Input Select Box Angel Chiang 2009-04-06T00:55:42Z 2009-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#723039 0 Answer by wheresrhys for IE Input Select Box wheresrhys 2009-04-06T20:18:34Z 2009-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#990938 0 Answer by david for IE Input Select Box david 2009-06-13T16:07:42Z 2009-06-13T16:07:42Z <p>it seems to do not work with internet explorer 8</p>