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> <style> div, article{ width: 200px; height: 100px; background: yellow; border: 1px solid red; margin: 10px; } </style> </head> <body> <h1>jQuery unwrap() Method</h1> <div> <p>Paragraph inside div</p> </div> <article> <p>Paragraph inside article.</p> </article> <button>unwrap div only</button> <script> $(document).ready(function(){ $("button").click(function(){ $("p").unwrap("div"); }); }); </script> </body> </html>
OUTPUT
×

Save as Private