<div class="test">
<div class="testText">
Test
</div>
</div>
$('.testText').click(function(){
$('.test').append($(this).clone());
});
const $test = $('.test').on('click', '.testText', function() {
$test.append($(this).clone());
});
$('.testText').click(function() {
$('.test').append($(this).clone(true));
});