Contents
jQuery wrap: Main Tips
- The
.wrap()
jQuery function places the specified HTML elements around every selected element. - jQuery
.wrapAll()
puts them around the whole set of matched elements. - To place the specified elements around the content of each selected element, use jQuery
.wrapInner()
.
Using .wrap()
The jQuery .wrap()
element function inserts the specified HTML content or jQuery object around each matched element. To undo this, use the .unwrap() method.
The following example wraps content around a <h2>
element:
Note: jQuery .wrap() can be used to return the unmodified set of HTML elements to use in chaining.
The .wrap()
jQuery syntax includes a wrapElement
parameter, indicating the content to add:
$(selector).wrap(wrapElement);
Alternatively, you can include a function
as the parameter. It specifies the callback function, delivering the content to wrap around selected HTML elements:
$(selector).wrap(function);
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Learn to Apply .wrapAll()
Using jQuery .wrapAll()
places the specified elements around the whole set of matched elements. See an example below:
$("button").click(() => {
$("p").wrapAll("<div class=\"main\"></div>");
});
As previously, you have to indicate the content to add in the wrapElement
parameter:
$(selector).wrapAll(wrapElement);
Again, you can also add a function
, returning the content to wrap:
$(selector).wrapAll(function);
.wrapInner() Explained
Now, jQuery .wrapInner()
places the specified elements around the content of every matched element.
jQuery .wrapInner()
also accepts a wrapElement
parameter, specifying the elements to wrap. It can also be defined in a function
, returning the HTML content or JavaScript object to put around elements' content:
$(selector).wrapInner(wrapElement);
$(selector).wrapInner(function);