jQuery replaceWith() Method
Example
Replace the first <p> element with new text:
$("button").click(function(){
$("p:first").replaceWith("Hello world!");
});
Try it Yourself »
Definition and Usage
The replaceWith() method replaces selected elements with new content.
Syntax
$(selector).replaceWith(content,function(index))
Parameter | Description |
---|---|
content | Required. Specifies the content to insert (can contain HTML tags)
Possible values:
|
function(index) | Optional. Specifies a function that returns the content to replace
|
Try it Yourself - Examples
Replace content using a function
How to use a function to replace selected elements with new content.