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.
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.
In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…
We are NYC moving firm. Are you planning a flat move? Maybe a distance or…
Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…
Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…
On special days like birthdays and weddings, we all like to celebrate our loved ones…
A web application is different from a regular mobile or desktop application as it runs…
View Comments
Thank you for sharing with us, I think this website really stands out.