X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fcore.js;h=9279d179ab57366282bca78d4f1761d998f1cd70;hb=aa9236e5ea8c91fbf60d440872e4946a0452f852;hp=829e1536379f8487a1ba926c954e2358949b4972;hpb=b69dc841ff6d3a3a9bcb8ebe107f1d1cad8a634f;p=jquery.git diff --git a/src/core.js b/src/core.js index 829e153..9279d17 100644 --- a/src/core.js +++ b/src/core.js @@ -612,10 +612,14 @@ jQuery.extend({ }, // See test/unit/core.js for details concerning this function. - // Since 1.3 DOM methods and function like alert + // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). + + // Memory leaks appear in IE6 when applying instanceof + // to the window, document or any other COM object (#3485) + // http://ajaxian.com/archives/working-aroung-the-instanceof-memory-leak isFunction: function( fn ) { - return fn instanceof Function; + return !!fn && !!fn.hasOwnProperty && fn instanceof Function; }, // check if an element is in a (or is an) XML document