Ticket #9096 (closed bug: fixed)
Selector or find bug in jQuery 1.6
| Reported by: | nazar-pc@… | Owned by: | nazar-pc@… |
|---|---|---|---|
| Priority: | low | Milestone: | 1.6.1 |
| Component: | selector | Version: | 1.6 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I used next code with jQuery 1.5 - 1.5.2, but after updating to jQuery 1.6 this code doesn't works. My example:
<select multiple onChange="$(this).find('option[value=\'russian\']').attr('selected', 'selected');" name="core[active_languages][]" size="5">
<option value="english">English</option> <option selected value="russian">Русский</option>
</select>
P.S. Sorry for my english
Change History
comment:1 Changed 2 years ago by timmywil
- Owner set to nazar-pc@…
- Priority changed from undecided to low
- Status changed from new to pending
- Component changed from unfiled to selector
comment:2 Changed 2 years ago by anonymous
I have the same result on my site, as on: http://jsfiddle.net/timmywil/9GN8G/1/ But, when change framework to jQuery 1.5.2 - example works good.
comment:3 Changed 2 years ago by timmywil
- Status changed from pending to closed
- Resolution set to fixed
- Milestone changed from 1.next to 1.6.1
Oh, I see the different behavior. I saw it was getting selected on blur, but you'd like it selected before that. Switching to .prop will give you the same behavior as before. Nevertheless, this will work as before in 1.6.1.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

Thanks for taking the time to contribute to the jQuery project! Please provide a reduced test case on http://jsFiddle.net that reproduces the issue experienced to help us assess your ticket. Additionally, test against the jQuery (edge) version to ensure the issue still exists.
Works for me: http://jsfiddle.net/timmywil/9GN8G/1/.