Ticket #8038 (closed bug: wontfix)
wrap cause selectedIndex reset in opera
| Reported by: | sayer_jim@… | Owned by: | sayer_jim@… |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | manipulation | Version: | 1.5rc1 |
| Keywords: | opera | Cc: | |
| Blocking: | Blocked by: |
Description
Tested in opera 10.62/windows XP sp2
Test case: <select id='test'> <option>option1</option> <option>option2</option> </select> <input id='go' value='go' type='button'></input>
$('#go').click(function(){
$('#id').wrap('<div/>');
)}
the above code will reset selectedIndex to 0(option1) for 'test' element tested both with 1.4.2 and 1.4.4 version of jquery
Change History
comment:1 Changed 2 years ago by rwaldron
- Owner set to sayer_jim@…
- Status changed from new to pending
comment:2 Changed 2 years ago by anonymous
Sorry a mistake, yes it should be $('#test') instead of $('#id')
comment:3 Changed 2 years ago by addyosmani
- Priority changed from undecided to low
- Status changed from pending to closed
- Resolution set to worksforme
I've reproduced your code here with an additional check for selectedIndex Live Test Case. Testing this on XP SP2 using Opera 10.62 (and jQuery 1.4.4) I'm getting the same output and behavior as per what I'm seeing in the latest versions of Firefox, Chrome and Safari. I've also run this against jQuery 1.3.2 and it's also working fine there too.
Closing as worksforme, however if you have additional information or tests you're able to provide us with which we can confirm as having broken behaviour for older versions of Opera we would be happy to investigate.
comment:4 Changed 2 years ago by anonymous
Just tested live case on jsFiddle, still broken in my browser.
Some additional information: Opera 10.62 is international version, version details: 编制 3500 平台 Win32 系统 Windows XP 浏览器识别 Opera/9.80 (Windows NT 5.1; U; zh-cn) Presto/2.6.30 Version/10.62
All other browsers (Chrome,FF,IE and Safari) tested normal. I then upgraded to version 11 and the bug is still there. However a version 11 installed in XP virtual machine is free of this bug, maybe this is related to OS?
comment:5 Changed 2 years ago by jitter
- Status changed from closed to reopened
- Resolution worksforme deleted
- Version changed from 1.4.4 to 1.5rc1
- Component changed from unfiled to manipulation
I can reproduce this too with Opera 10.63, Windows XP SP2 and jQuery 1.4.4 . Opera 11 is fine for me.
But it's not jQuery doing something inherently wrong as this test case with plain js shows. This produces the exact same bug for me with Opera 10.63
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

You do realize there is no element that matches $("#id"), right?