How to clone content of the element with class and put it into itself?
Here is example. We have this:
<div class="cloneThis">one</div>
<div class="cloneThis">two</div>
The result must be like
<div class="cloneThis">one<span>one</span></div>
<div class="cloneThis">two<span>two</span></div>
I tried something like
$('.cloneThis', this).append('<span>'+$('.cloneThis', this).html()+'</span>');
but it returns first element of class and put it into all other. Is there any way to solve this?