JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.21/themes/base/jquery-ui.css">
<div id="window" style="border:'solid 1px'">window</div>

JavaScript

$('#window').dialog({
    'buttons': {
        'minimize': function() {
            $(this).parents('.ui-dialog').animate({
                height: 0,
                width: '20px',
                top: $(window).height(),
                left: 0
            }, 200, function(){
                $(this).hide();
            });            
        }
    }
});