Categories: jQuery

jQuery wrapInner – wrap element around the content

Share

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.

Possible values of jQuery wrapInner:

– 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.

Recent Posts

Editorial Elevation: Refined Writing Services

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

23 mins ago

Top Advantages of Augmented Reality in Healthcare

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

24 hours 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.…

1 day ago

What is the Future of Artificial Intelligence?

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

2 days ago

Role of guest post services in SEO

Guest post services have become an essential tool for businesses and individuals looking to increase…

2 days ago

Top Programming Trends You Need to Know in 2024

Programming continues to evolve at a rapid pace, with new trends and technologies emerging every…

2 days ago