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.
The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…
Sales and marketing teams help attract, convert, and retain customers to ensure an organization’s long-term…
Are you an owner of a small business who’s trying to come up with ways…
Introduction When patients bring me their lab reports, the confusion is almost always the same.…
Are you excited about remodeling your house after a long time? Perhaps if you're planning…
The practice of yoga teaches us to be present, patient and mindful of our decisions.…