Bug Tracker

Opened 12 years ago

Closed 12 years ago

Last modified 11 years ago

#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:
Blocked by: Blocking:

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 (3)

comment:1 Changed 12 years ago by Timmy Willison

Component: unfiledselector
Owner: set to nazar-pc@…
Priority: undecidedlow
Status: newpending

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/.

comment:2 Changed 12 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 12 years ago by Timmy Willison

Milestone: 1.next1.6.1
Resolution: fixed
Status: pendingclosed

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.

http://jsfiddle.net/timmywil/9GN8G/2/

Note: See TracTickets for help on using tickets.