jQuery wrapInner wraps specified HTML element(s) around the content of each element in a set of matched elements.
It may be nested structure but it should contain only one inmost element.
– HTML elements
– jQuery objects
– DOM elements
Suppose you have following HTML:
<div class="main"> <div class="sub">John Doe</div> <div class="sub">Jane Doe</div> </div>
Now you can insert an HTML <span> structure around the content of each sub <div> elements like so:
$( ".sub" ).wrapInner( "<span></span>");
Final Output:
<div class="main"> <div class="sub"><span>John Doe</span></div> <div class="sub"><span>Jane Doe</span></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…