mirror of
https://github.com/jquery/jquery.git
synced 2026-02-06 11:25:07 -05:00
Make sure that the correct context is being passed in for replaceWith(fn). Fixes #5798.
This commit is contained in:
@@ -233,6 +233,12 @@ jQuery.fn.extend({
|
||||
// this can help fix replacing a parent with child elements
|
||||
if ( !jQuery.isFunction( value ) ) {
|
||||
value = jQuery( value ).detach();
|
||||
|
||||
} else {
|
||||
return this.each(function(i) {
|
||||
var self = jQuery(this), old = self.html();
|
||||
self.replaceWith( value.call( this, i, old ) );
|
||||
});
|
||||
}
|
||||
|
||||
return this.each(function() {
|
||||
|
||||
Reference in New Issue
Block a user