Changed window.frameElement to window == top because of some access denied errors...
[jquery.git] / src / event.js
index 1977c8e..0ccbf5d 100644 (file)
@@ -332,7 +332,7 @@ jQuery.event = {
        
                                // If Safari or IE is used
                                // Continually check to see if the document is ready
-                               if (jQuery.browser.msie || jQuery.browser.safari ) (function(){
+                               if ((jQuery.browser.msie && window == top) || jQuery.browser.safari ) (function(){
                                        try {
                                                // If IE is used, use the trick by Diego Perini
                                                // http://javascript.nwbox.com/IEContentLoaded/