Side navigation
#13660 closed bug (invalid)
Opened March 25, 2013 10:43AM UTC
Closed April 24, 2013 08:48AM UTC
ie9 lose focus on focusin event
Reported by: | pierre.fiorelli@gmail.com | Owned by: | pierre.fiorelli@gmail.com |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
i am using jquery mobile 1.3 with jquery 1.9.1 and when i click on a selectmenu with option nativeMenu = false, IE9 lose focus and go backward.
I fixed the problem by removing the focusin event added for firefox 17+ (ln 1443)
// Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php for ( i in { submit: true, change: true, focusin: true }) {
become
for ( i in { submit: true, change: true }) {
Attachments (0)
Change History (5)
Changed March 25, 2013 02:36PM UTC by comment:1
owner: | → pierre.fiorelli@gmail.com |
---|---|
status: | new → pending |
Changed March 27, 2013 10:00AM UTC by comment:2
status: | pending → new |
---|
sorry for the delay
http://jsfiddle.net/Q7Fbd/3/embedded/result/
I only have the problem when only one tab is open, and when I click at least 2 times on the select.
I don't know why but the HTML generated by jsfiddle is not visible on IE9. I must set the compatibility mode (but have the problem without the compatibility mode when i don't pass through jsfiddle):
- Navigation Mode: IE9 Compatibility View
- Document Mode: IE7 Standards
Changed April 01, 2013 08:57PM UTC by comment:3
status: | new → pending |
---|
Sorry, this is too much code to debug. Can you reduce it to just the jQuery core script?
Changed April 09, 2013 09:58AM UTC by comment:4
i'm sorry i didn't have the time to create a case in order to reproduce the problem without jquery mobile.
I will try in the following days
Changed April 24, 2013 08:48AM UTC by comment:5
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Can you provide a test case on jsfiddle.net? That would help us determine where the problem lies.