Modify ↓
Ticket #9343 (closed bug: worksforme)
<select> added by jquery not working on ie 8
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | manipulation | Version: | 1.6.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Try this on internet explorer 8.
http://remysharp.com/wp-content/uploads/2007/01/select.html
I discovered the bug trying to do something like this
$('#mydiv').append( $('<select><option value="8.54">8.54</option><option value="8.6">8.6</option></select>') );
OR
$('#mydiv').append( $('<select></select>').append( $('<option value="8.54">8.54</option>'), $('<option value="8.6">8.6</option>') ) );
Change History
comment:1 Changed 2 years ago by timmywil
- Priority changed from undecided to low
- Resolution set to worksforme
- Status changed from new to closed
- Component changed from unfiled to manipulation
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Seems to work fine:
http://jsfiddle.net/timmywil/Qe9Eh/