aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/event.js11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/event.js b/src/event.js
index e2087cc13..1468d0c59 100644
--- a/src/event.js
+++ b/src/event.js
@@ -849,10 +849,15 @@ function bindReady() {
}
});
- // If IE and not an iframe
+ // If IE and not a frame
// continually check to see if the document is ready
- // NOTE: DO NOT CHANGE TO ===, FAILS IN IE.
- if ( document.documentElement.doScroll && window == window.top ) (function() {
+ var toplevel = false;
+
+ try {
+ toplevel = window.frameElement === undefined;
+ } catch(e){}
+
+ if ( document.documentElement.doScroll && toplevel ) (function() {
if ( jQuery.isReady ) {
return;
}