From fe9333cc792eecf98189f8fd18daf64b64dff049 Mon Sep 17 00:00:00 2001 From: jeresig Date: Wed, 16 Dec 2009 15:42:03 -0500 Subject: [PATCH] No need to use jQuery's event system for binding the onunload event in IE. --- src/event.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/event.js b/src/event.js index 018d4d9..283d1e0 100644 --- a/src/event.js +++ b/src/event.js @@ -876,10 +876,9 @@ jQuery.each( ("blur focus load resize scroll unload click dblclick " + // More info: // - http://isaacschlueter.com/2006/10/msie-memory-leaks/ /*@cc_on -jQuery( window ).bind( 'unload', function() { +window.attachEvent("onunload", function() { for ( var id in jQuery.cache ) { - // Skip the window - if ( id != 1 && jQuery.cache[ id ].handle ) { + if ( jQuery.cache[ id ].handle ) { // Try/Catch is to handle iframes being unloaded, see #4280 try { jQuery.event.remove( jQuery.cache[ id ].handle.elem ); -- 1.7.10.4