The detail is this, when I click (xClones) = all the elements of #campoBusq are deleted and the question is how it is done so that only the element that is clicked is deleted
<div id="campoBusq">
<div class="elemento">
texto1 <div class="xClones"> X </div>
</div>
<div class="elemento">
texto2 <div class="xClones"> X </div>
</div>
<div class="elemento">
texto3 <div class="xClones"> X </div>
</div>
</div>
$('#campoBusq').on('click','.xClones',function() { $("#campoBusq").find(".elemento").remove();*Como podria usar un this aqui* });