JQuery memory leak.

JQuery memory leak.


Hello,
We are developing a chm help file and we are using jquery as our
JavaScript library.
One of our file is very large, and as been quite slow on unload (2
sec).
We tracked down the problem to :
// Prevent memory leaks in IE
// And prevent errors on refresh with events like mouseover in other
browsers
// Window isn't included so as not to unbind existing unload events
jQuery(window).bind("unload", function() {
    jQuery("*").add(document).unbind();
});
Has that memory link been fixed in internet explorer ? If yes, can you
tell us since when ?
You help is greatly appreciated
Vincent