X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=3db2c3552146803060fd58c43f4473638d19560f;hb=3e9ef6f5c08e63a90ef2dfd3bdc833994e7a0ac8;hp=f2f6c7de6d37d2ba7ea2399e0b1420e437b8b327;hpb=cb4880ee8353b5fc1a8a509cb0caf3a82818da0a;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index f2f6c7d..3db2c35 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -213,10 +213,16 @@ jQuery.fn.extend({ replaceWith: function( value ) { if ( this[0] && this[0].parentNode ) { + // Make sure that the elements are removed from the DOM before they are inserted + // this can help fix replacing a parent with child elements + if ( !jQuery.isFunction( value ) ) { + value = jQuery( value ).detach(); + } + return this.each(function() { var next = this.nextSibling, parent = this.parentNode; - jQuery(this).detach(); + jQuery(this).remove(); if ( next ) { jQuery(next).before( value );