jQuery unwrap

The jQuery unwrap() method is used to remove the parent element of the selected elements.

Syntax:

$(selector).unwrap()   

Example of jQuery unwrap() method

Let’s take an example to demonstrate the jQuery unwrap() method.

<!DOCTYPE html>  

<html>  

<head>  

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>  

<script>  

$(document).ready(function(){  

    $("button").click(function(){  

        $("p").unwrap();  

    });  

});  

</script>  

<style>  

div{background-color: orange;}  

article{background-color: yellowgreen;}  

</style>  

</head>  

<body>  

<div>  

<p>Hello Guys!</p>  

</div>  

<article>  

<p>This is javatpoint.com</p>  

</article>  

<button>Click here to remove the parent element of each p element</button>  

</body>  

</html>

jQuery unwrap() example 2

Let’s take an example which shows wrap() and unwrap() method together.


  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>  
  5. <script>  
  6. $(document).ready(function(){  
  7.     $("#btn1").click(function(){  
  8.         $("p").wrap("<div></div>");  
  9.     });  
  10.     $("#btn2").click(function(){  
  11.         $("p").unwrap();  
  12.     });  
  13. });  
  14. </script>  
  15. <style>  
  16. div{background-color: pink;}  
  17. </style>  
  18. </head>  
  19. <body>  
  20. <p>Hello Guys!</p>  
  21. <p>This is javatpoint.com</p>  
  22. <button id="btn1">Wrap a div element around each p element</button>  
  23. <button id="btn2">Unwrap</button>  
  24. </body>  
  25. </html>  

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *