Skip to content
Permalink
Browse files
No need to use jQuery's event system for binding the onunload event i…
…n IE.
  • Loading branch information
jeresig committed Dec 16, 2009
1 parent 6490249 commit fe9333c
Showing 1 changed file with 2 additions and 3 deletions.
@@ -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 );

0 comments on commit fe9333c

Please sign in to comment.