X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=742ec254336bbdb583bd1aee5a82755398f46710;hb=23d600c66d8e1f7298dcb46eedba862279cd251d;hp=3db2c3552146803060fd58c43f4473638d19560f;hpb=3e9ef6f5c08e63a90ef2dfd3bdc833994e7a0ac8;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index 3db2c35..742ec25 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -77,7 +77,14 @@ jQuery.fn.extend({ wrapInner: function( html ) { return this.each(function() { - jQuery( this ).contents().wrapAll( html ); + var self = jQuery( this ), contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } }); },