From 884de15fb970affd0b1697245795bce7b231a1db Mon Sep 17 00:00:00 2001 From: jeresig Date: Sun, 10 Oct 2010 18:01:59 -0400 Subject: [PATCH] Make sure that the unload event doesn't leak in IE - use jQuery's binding mechanism to make that happen. --- src/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.js b/src/event.js index 82e309d..7a10a12 100644 --- a/src/event.js +++ b/src/event.js @@ -1154,7 +1154,7 @@ jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblcl // More info: // - http://isaacschlueter.com/2006/10/msie-memory-leaks/ if ( window.attachEvent && !window.addEventListener ) { - window.attachEvent("onunload", function() { + jQuery(window).bind("unload", function() { for ( var id in jQuery.cache ) { if ( jQuery.cache[ id ].handle ) { // Try/Catch is to handle iframes being unloaded, see #4280 -- 1.7.10.4