From: Brandon Aaron Date: Wed, 14 Nov 2007 15:06:48 +0000 (+0000) Subject: Fix for #1911 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;ds=sidebyside;h=ee52c89dc956dc04d827d70440a089fd0cf94a46;hp=d5cb977a08156c9945ae7f01fa481c2e2838d8df;p=jquery.git Fix for #1911 --- diff --git a/src/event.js b/src/event.js index 627f4d2..cb0b6c2 100644 --- a/src/event.js +++ b/src/event.js @@ -450,7 +450,8 @@ function bindReady(){ } // Prevent memory leaks in IE -if ( jQuery.browser.msie ) - jQuery(window).bind("unload", function() { - $("*").add([document, window]).unbind(); - }); +// And prevent errors on refresh with events like mouseover +// Window isn't included so as not to unbind existing unload events +jQuery(window).bind("unload", function() { + $("*").add(document).unbind(); +});