JSFiddle - React, Tailwind, and code Playground

HTML

<div></div>

CSS

div {
    width: 200px;
    height: 50px;
    border: 1px solid black;
    background-color: #cff;
}

JavaScript

function completa() {
    alert('Este alert está dentro da função "callback"');
}
$('div').animate({
    'height': '200px'
}, {
    duration: 2000,
    complete: completa
});