JSFiddle - React, Tailwind, and code Playground
by Denis
HTML
<button>Поехали!</button>
CSS
#report {
width: 200px;
height: 150px;
line-height: 150px;
text-align: center;
border: 1px solid #900;
}
JavaScript
$('button').click(function(){
$.ajax({
url: '/echo/html/',
type: 'POST',
data: 1,
success: function(){
$('<div id="report">GOOD!</div>').appendTo('body')
.delay(3000).fadeOut(500);
},
dataType: 'html'
});
});