Skip to content

Instantly share code, notes, and snippets.

@Tatsh
Created October 12, 2011 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tatsh/1282578 to your computer and use it in GitHub Desktop.
Save Tatsh/1282578 to your computer and use it in GitHub Desktop.
Fix memory leak in IE7 jQuery.remove()
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