Ticket #9231 (closed bug: cantfix)
Multiple selected options in IE6 are not working
| Reported by: | n3croman@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | manipulation | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
When creating <select> with multiple="multiple" and several <option> tags, some of them with selected="selected", in IE6 after adding the created element into DOM, only the last selected option is actually selected. I'm not sure, if it's just IE6 DOM problem, or it could be solved using some workaround in jQuery. It might be also related to this issue http://bugs.jquery.com/ticket/6159
Example: http://jsfiddle.net/jPKQz/1/
Change History
comment:2 Changed 2 years ago by timmywil
- Priority changed from undecided to low
- Status changed from new to open
- Version changed from 1.6 to 1.3.2
- Component changed from unfiled to manipulation
This isn't a problem with attr or val, but being able to set multiple in IE6, which has been a problem for all versions of jQuery. http://jsfiddle.net/timmywil/jPKQz/9/
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

It should at least work, when using this in IE6: selectElement.val(arrayWithValues);