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.
Pain in muscles and joints can be a problem in everyday life, whether it involves…
Most modern businesses spend a lot of time thinking about digital touchpoints. Websites, email campaigns,…
While TikTok and Instagram battle for users’ attention with short vertical videos, Elon Musk’s social…
When you are looking to apply for a mortgage the one thing that most people…
Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…
Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…
View Comments
Thank you for sharing with us, I think this website really stands out.