select « internet explorer « HTML CSS Q&A

Home
HTML CSS Q&A
1.align
2.anchor
3.Animation
4.attribute
5.background
6.Block
7.border
8.Button
9.checkbox
10.Class
11.color
12.column
13.cross browser
14.Development
15.div
16.doctype
17.dom
18.dreamweaver
19.dropdown
20.email
21.embed
22.Encoding
23.Eye
24.firefox
25.flash
26.flex
27.float
28.font
29.footer
30.form
31.Format
32.grid
33.height
34.htaccess
35.HTML 5
36.hyperlink
37.iframe
38.Image
39.Image Format
40.inheritance
41.input
42.internet explorer
43.JTabbedPane
44.label
45.layout
46.li ul ol
47.link
48.margin
49.media
50.Menu
51.mobile
52.Navigation
53.opera
54.overflow
55.pdf
56.position
57.print
58.query
59.regex
60.Render
61.rhino
62.scrollbar
63.selector
64.shadow
65.Shape
66.span
67.Table
68.Template
69.text
70.TextArea
71.TextBox
72.URL
73.validation
74.webkit
75.Website
76.Website Header
77.width
78.Word
79.XML
80.z index
HTML CSS Q&A » internet explorer » select 

1. Solve the select overlap bug in IE6    stackoverflow.com

When using IE, you cannot put an absolutely positioned div over a select input element. That's because the select element is considered an ActiveX object and is on top of every ...

2. How to update HTML "select" box dynamically in IE    stackoverflow.com

I've got an HTML "select" element which I'm updating dynamically with code something like this:

var selector = document.getElementById('selectorId');    
for (var i = 0; i < data.length; ++i)
{
  ...

3. Setting the height of a SELECT in IE    stackoverflow.com

IE seems to ignore the height set in CSS when rendering a HTML SELECT. Are there any work around's for this or do we have to just accept IE will not ...

4. Styling HTML SELECT in Internet Explorer    stackoverflow.com

Any way to customize the border and background of an HTML SELECT in IE? I can style the border with simple CSS in Firefox, but apparantly not in IE.

5. IE6 SELECT HTML tag causes rest of page to vanish    stackoverflow.com

The following HTML does not work in IE6 for me:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><body>This text is visible.<textarea>This too.</textarea>
This is not visible.
<select><option value="a">A</option><option value="b">B</option></select>
Neither is this.
<textarea>Nor this.</textarea>
Nor this.
</body></html>
In IE6, every ...

7. Alternative to using HTML Select    stackoverflow.com

I have a HTML form with various SELECT (both multiline and drop down list style) elements. A number of the items in the SELECT are much wider than the element width. ...

8. Is there user-select for Opera 10.62 and IE9?    stackoverflow.com

I have been trying to apply user-select for both Opera 10.62 and IE9 without success. I can't/won't bind events with JavaScript that preventDefault(), because there are so many places to be ...

9. max-width in select tag is not working in IE    stackoverflow.com

i have a select tag,... like this,..

<select style="max-width:150px"> 
     <option value='1'>bla bla bla bla bla bla bla ...(let's say a long words)
     ...... 
</select>
it's ...

10. ie6 cant select inside of textbox    stackoverflow.com

for some reason in ie6 i can only select a textbox by clicking the border. below is the styling it has:

border: 1px solid black;
margin-bottom: 7px;
margin-left: 30px;
padding: 2px;
width: 300px;

11. html-select height increase in IE6    stackoverflow.com

How to increse the height of the select combo box in the IE6 browser where by default it is showing 11 items in the list.Please can any give the solution for ...

12. html-select in IE6    stackoverflow.com

What is the solution if i want to display more elements in the list of select dropdown when it is triggered without using scrollbar in IE6, becoz i have a requirement ...

14. Select element scales cross-browser, except for IE8    stackoverflow.com

I'm trying to scale a select-element with the window-size (on resizing). This goes well for FF3.6, Chrome 10, IE6 (!!) and IE7, however... not for IE8. A demonstration of the particular code-fragment ...

15. IE9 "select element by click" inside an HTML explorer bar    stackoverflow.com

Is it possible to expand the "select element by click" functionality (part of the F12 developer tools) on HTML explorer bars in IE9 (currently working for me on normal IE windows/tabs ...

16. CSS styles for select element are not applied in IE 7    stackoverflow.com

CSS border and background color styles are not applied to the select element in IE7. HTML Code:

<select class="select_box">
   <option>xxx</option>
</select>
CSS code:
.select_box
{
border:1px solid #ddd;
background-color:#000;
}

17. Incorrect size of select tag in IE 7 after zoom in - zoom out    stackoverflow.com

How to fix strange IE7 (IE 8 in compatability mode) zoom issue. I have performed zoom in/zoom out to 100% and after it select tag didn't restore his height.

18. SELECT list not showing in IE8 due to "height : 75%" CSS    stackoverflow.com

I have a webapp that displays a list of names as options in a SELECT block:

<select name="names" .... >
    <option value="Lee">
    <option value="Jamie">
   ...

21. How to delete selected HTML element interactively in IE's developer tools?    stackoverflow.com

I can delete html elements interactively in Firebug and Chrome's Developer Tools. How can I do the same in IE 9's Developer Tools? I see options to copy only. I tried ...

22. Need some help with basic HTML select and ie    stackoverflow.com

I reproduce the error in this jsfiddle : http://jsfiddle.net/DavidLaberge/KftG6/5/ Here is my HTML:

    <table id="infoMedicament" style="width:100%;">
        <tr>
    ...

23. Style of Select element behaviors different between IE 8 and FF    stackoverflow.com

I have a select element, and want to change select itself as black background, white fore color, but have options be while background, black fore color. It works fine in FF, but ...

24. IE 8 cannot find CSS file on selection change    stackoverflow.com

I have an asp form on my page. The form elements are styled by a css file called product.css The form has 3 select boxes. As I load the page, the CSS ...

25. Styling Select element causes error in IE7    stackoverflow.com

I'm using Ryan Fait's script to style elements (http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/). It works fine on all browsers except IE7. IE7 raises this error: "Not implemented", on this line from the script:

document.onmouseup = ...

26. Select Element Not Working in IE7    stackoverflow.com

I'm pulling a form into a site as an iframe. Everything works fine except there are two drop down select elements for the client in IE7 when they click it doesn't ...

27. Select list not opening when clicked on Internet Explorer on some PCs    stackoverflow.com

Why in Internet Explorer 7, in Windows XP (BUT only on certain PCs), do select lists not open up when clicked? You have to use your keyboard's down arrow key to ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.