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

Save as Private