jquery core: closes #3159. remove() would unbind form.elements instead of a form.

This commit is contained in:
Ariel Flesler 2008-07-15 15:58:01 +00:00
parent b36fe4686c
commit a33f85e691

View file

@ -1309,7 +1309,7 @@ jQuery.each({
remove: function( selector ) {
if ( !selector || jQuery.filter( selector, [ this ] ).r.length ) {
// Prevent memory leaks
jQuery( "*", this ).add(this).each(function(){
jQuery( "*", this ).add([this]).each(function(){
jQuery.event.remove(this);
jQuery.removeData(this);
});