Reputation: 342
I need to add a span tag inside every h2 tags
my problem is im having an anchor tag inside h2 tag like this
<h2><a href=#">something</a></h2>
I have tried this code
$('h2').wrappInner('<span />');
It is wrapping span tage before the anchor tag like
<h2><span><a href="#">something</a></span></h2>
What i want is this:
<h2><span></span><a href="#">something</a></h2>
Is there any way to do this?
Upvotes: 2
Views: 3467