Changed the window.location hack to be more specific (and documented).
authorJohn Resig <jeresig@gmail.com>
Fri, 16 Jun 2006 00:18:15 +0000 (00:18 +0000)
committerJohn Resig <jeresig@gmail.com>
Fri, 16 Jun 2006 00:18:15 +0000 (00:18 +0000)
jquery/jquery.js

index 3e7ffa6..7577936 100644 (file)
@@ -778,7 +778,12 @@ $.event = {};
 // Bind an event to an element
 // Original by Dean Edwards
 $.event.add = function(element, type, handler) {
-       if ( element.location ) { element = window; } // Ughhhhh....
+       // For whatever reason, IE has trouble passing the window object
+       // around, causing it to be cloned in the process
+       if ( $.browser == "msie" && typeof element.setInterval != "undefined" ) {
+               element = window;
+       }
+
        if (!handler.$$guid) { handler.$$guid = $.event.add.guid++; }
        if (!element.events) { element.events = {}; }
        var handlers = element.events[type];