HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery replaceWith() Method</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ $("p:first").replaceWith(function(){ return "<p>Hello jQuery</p>"; }); }); }); </script> </body> </html>
OUTPUT
×

Save as Private