Is there a fully-functional dropdown replacement for HTML SELECT that works in IE?

Posted by Ken Paul on Stack Overflow See other posts from Stack Overflow or by Ken Paul
Published on 2008-11-20T17:14:57Z Indexed on 2010/03/12 4:37 UTC
Read the original article Hit count: 651

Filed under:
|
|

We determined in a previous question that many features of HTML SELECTs are not supported in IE. Is there an alternative widget that you would recommend from your experience that meets the following requirements?

  1. Respects the contentEditable property (does not allow selection changes if true)
  2. Respects the disabled property of individual OPTIONs (shows them "grayed out" or with strike-through font, and makes them un-selectable)
  3. Supports Option Groups (OPTGROUP elements)
  4. Supports style options such as border and margin in the SELECT and all sub-elements
  5. Supports dynamic add and delete of OPTION and OPTGROUP elements
  6. Supports the above in IE version 6 and above

EDIT: As noted by @Joel Coehoorn, items 3 and 5 above are currently supported in IE. They are included here to make sure they are not overlooked in a replacement widget.

© Stack Overflow or respective owner

Related posts about html

Related posts about html-select