Categories: jQuery

jQuery wrapAll – wrap all elements

Share

jQuery wrapAll wraps specified HTML element(s) in the set of matched elements.

This takes any string or object for passing into $() function to specify the HTML DOM structure. Around all the elements the structure will be wrapped as a single group.

Example of jQuery wrapAll:

Suppose you have following HTML:

<div class="main">
<div class="sub">John Doe</div>
<div class="sub">Jane Doe</div>
</div>

Now a new <div> wrapped around all matched elements to the HTML DOM structure:

$( ".sub" ).wrapAll("<div class='new' />");

The result will be:

<div class="main">
<div class="new">
<div class="sub">John Doe</div>
<div class="sub">Jane Doe</div>
</div>
</div>

For more information click here.

View Comments

Recent Posts

Editorial Elevation: Refined Writing Services

Introduction The influence of words is more significant than ever in a digital age. Whether…

1 day ago

How to Start a Business?

How to Start a Business begins with the realization that every business has its risks and…

2 days ago

4 Tips for Businesses Struggling with Cash Flow

It's not uncommon for businesses to have financial difficulties nowadays. The fact of the matter…

2 days ago

Top Advantages of Augmented Reality in Healthcare

The success of any tech innovation depends on its share in various industries and business…

2 days ago

Recover From Google Penalties in 10 Steps in 2024

Facing Google penalties can be a daunting challenge for businesses relying on organic search traffic.…

2 days ago

What is the Future of Artificial Intelligence?

Technology, undeniably, has made our lives easier. But the advent of artificial intelligence has been…

3 days ago