Modify ↓
Ticket #3880 (closed bug: fixed)
BUGFIX for: "If IE and not an iframe... continually check to see if the document is ready"
| Reported by: | capc-megadrom | Owned by: | john |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3.1 |
| Component: | event | Version: | 1.3 |
| Keywords: | If IE and not an iframe | Cc: | |
| Blocking: | Blocked by: |
Description
in function bindReady()... some
WRONG: If IE and not an iframe continually check to see if the document is ready if ( document.documentElement.doScroll && !window.frameElement ) (function(){
CORRECT: If IE and not an iframe continually check to see if the document is ready if ( document.documentElement.doScroll && typeof window.frameElement == undefined ) (function(){
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Looks like the problem reported by #3898.