diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js index a733eded0..32afd2309 100644 --- a/src/ajax/xhr.js +++ b/src/ajax/xhr.js @@ -23,8 +23,9 @@ var xhrId = 0, // Support: IE9 // Open requests must be manually aborted on unload (#5280) -if ( window.ActiveXObject ) { - jQuery( window ).on( "unload", function() { +// See https://support.microsoft.com/kb/2856746 for more info +if ( window.attachEvent ) { + window.attachEvent( "onunload", function() { for ( var key in xhrCallbacks ) { xhrCallbacks[ key ](); }