Created
October 12, 2011 21:10
-
-
Save Tatsh/1282578 to your computer and use it in GitHub Desktop.
Fix memory leak in IE7 jQuery.remove()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ($.browser.msie && $.browser.version <= 7) { | |
(function () { | |
$.fn.originalRemove = $.fn.remove; | |
$.fn.remove = function (selector) { | |
this.originalRemove(selector); | |
for (var k in this) { | |
delete this[k]; | |
} | |
}; | |
})(jQuery); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment