#3405 closed bug (wontfix)
"No such interface supported" error in Internet Explorer 7
Reported by: | chester_yang | Owned by: | flesler |
---|---|---|---|
Priority: | minor | Milestone: | 1.4 |
Component: | event | Version: | 1.4a1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In IE 7 a page with jQuery in a IFrame. in the page, there is link to PDF file like this ../pdf/111.pdf. The link is in a table column. click this link, we got line 0 error No such interface supported if debug script error is open in IE internet options.
if accessing the page directly, there is no such error.
Thanks,
Change History (3)
comment:1 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 14 years ago by
Resolution: | invalid |
---|---|
Status: | closed → reopened |
Still happens in 1.3.2. This is the offending code in jquery.1.3.2.js:
Fix target property, if necessary if ( !event.target )
event.target = event.srcElement document; Fixes #1925 where srcElement might not be defined either
This happens if JQuery has been included in a page (even if no functions are called at all) and a link to a PDF file is opened which loads in the same window (thus unloading the current page) using the Adobe plugin. Happens in IE7 and IE8 (others not tested).
comment:3 Changed 14 years ago by
Component: | unfilled → event |
---|---|
Milestone: | 1.3 → 1.4 |
Resolution: | → wontfix |
Status: | reopened → closed |
Version: | 1.2.6 → 1.4a1 |
Unfortunately I don't think that this is something that can be reasonably fixed on our end - all we're doing is accessing a (very sane) event property. It doesn't seem like it would matter if we wrapped it in a try/catch or anything else, it's more that the page is still existing in memory while the PDF is being loaded, causing problems.
If there are any specific fixes for the issue please let me know.
Please reopen with a test case.