From: Rich Dougherty Date: Wed, 11 Nov 2009 18:56:39 +0000 (-0500) Subject: Land Rich's fix for not using window.top to do frame detection. Fixes #4787. X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=bf71575bb4f37321b71ef8ce21c8208ad2b192da;p=jquery.git Land Rich's fix for not using window.top to do frame detection. Fixes #4787. --- diff --git a/src/event.js b/src/event.js index e2087cc..1468d0c 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; }