JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outer">
<span class="tomove">Move me</span>
<span class="title">After me</span>
</div>
<div class="outer">
<span class="tomove">Move me</span>
<span class="title">After me</span>
</div>
<div class="clearfix"></div>
<div class="souter">
<span class="tomove">Move me</span>
<span class="title">After me</span>
</div>
JavaScript
$('.outer').click(function() {
$(this)
.clone()
.Append($(this).next('.outer'));
});