今回は、Ajax関連の処理を取り扱う部分の解説になります。 IEメモリリーク対策 2365: // Prevent memory leaks in IE 2366: // And prevent errors on refresh with events like mouseover in other browsers 2367: // Window isn't included so as not to unbind existing unload events 2368: jQuery(window).bind("unload", function() { 2369: jQuery("*").add(document).unbind(); 2370: }); 2368行目から2370行目は、Internet Explorerのメモリリーク対策のための処理です。window.unload