jQuery | wrap() with Examples
The wrap() method is an inbuilt method in jQuery which is used to wrap the specified element around the selected element.
Syntax:
$(selector).wrap(element, function)
Parameters: This method accepts two parameters as mentioned above and described below:
- element: It is required parameter which is used to specify the element to wrap around the selected elements.
- function: It is optional parameter which is used to specify the function which returns the wrapping element.
Return Value: This method returns the selected element with the specified changes made by wrap() method.
Below examples illustrate the wrap() method in jQuery:
Example 1: This example does not accept optional parameter.
<!DOCTYPE html> <html> <head> <title>The wrap() Method</title> <script src= </script> <!-- jQuery code to show the working of this method --> <script> $(document).ready(function() { $("button").click(function() { $("p").wrap("<div></div>"); }); }); </script> <style> div { background-color: lightgreen; padding: 20px; width: 200px; font-weight: bold; height: 60px; border: 2px solid green; } </style> </head> <body> <!-- click on this paragraph and see the change --> <p>Welcome to GeeksforGeeks!</p><br> <button>Click Here!</button> </body> </html> |
Output:

Example 2:
<!DOCTYPE html> <html> <head> <title>The wrap Method</title> <script src= </script> <!-- jQuery code to show the working of this method --> <script> $(document).ready(function() { $("button").click(function() { $("p").wrap(function() { return "<div></div>" }); }); }); </script> <style> div { background-color: lightgreen; padding: 20px; width: 200px; font-weight: bold; height: 60px; border: 2px solid green; } </style> </head> <body> <!-- click on this paragraph and see the change --> <p>Welcome to GeeksforGeeks!</p><br> <button>Click Here!</button> </body> </html> |
Output:

Recommended Posts:
- Underscore.js | _.wrap() with Examples
- jQuery | eq() with Examples
- jQuery | last() with Examples
- jQuery | after() with Examples
- jQuery | on() with Examples
- jQuery | has() with Examples
- jQuery | one() with Examples
- jQuery | val() with Examples
- jQuery | first() with Examples
- jQuery | mouseout() with Examples
- jQuery | mouseover() with Examples
- jQuery | bind() with Examples
- jQuery | filter() with Examples
- jQuery | addClass() with Examples
- jQuery | mouseenter() with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



