X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=f2f6c7de6d37d2ba7ea2399e0b1420e437b8b327;hb=36a98b95c2f3f7617ddf51beec7515acf67d98ba;hp=081bb54819c6866f362ad443cbe962d477eec8c0;hpb=4681216c4bdf25b6b146b3f952917f46079c6ef7;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index 081bb54..f2f6c7d 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -196,6 +196,14 @@ jQuery.fn.extend({ this.empty().append( value ); } + } else if ( jQuery.isFunction( value ) ) { + this.each(function(i){ + var self = jQuery(this), old = self.html(); + self.empty().append(function(){ + return value.call( this, i, old ); + }); + }); + } else { this.empty().append( value ); } @@ -208,7 +216,7 @@ jQuery.fn.extend({ return this.each(function() { var next = this.nextSibling, parent = this.parentNode; - jQuery(this).remove(); + jQuery(this).detach(); if ( next ) { jQuery(next).before( value );