Modify ↓
Ticket #8960 (closed bug: duplicate)
attribute selector not working for IE 8 option selected attribute after AJAX requests
| Reported by: | NaZaf | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | 1.next |
| Component: | selector | Version: | 1.5.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$("option [selected]") When I load html content using AJAX that includes a selected option, the attribute selector does not work.
For example
<option selected='selected'>text</option>
Now if I use
$("option[selected]") or $("option [selected]")
In IE8, I get empty result, but it works well in FireFox.
Change History
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.

Here is a test case:
http://jsfiddle.net/kR2ks/1/