JSFiddle - React, Tailwind, and code Playground

by ChrisLTD

HTML

<div> 
    <span class="grab_button">grab</span>
</div>

JavaScript

$('.grab_button').click(function () {
    $(this).slideUp(function () {
        $(this).parent().append('<span class=" grabbed">grabbed</span>');
        $(this).parent().children('.grabbed').hide();
        $(this).parent().children('.grabbed').fadeIn();
        $(this).remove();
    });
});