JSFiddle - React, Tailwind, and code Playground
HTML
<div id="divStatus"></div>
<a href="#">click</a>
CSS
#divStatus {
background:url("http://www.lancs.ac.uk/~lubbs/images/home.gif") no-repeat;
padding-left: 22px;
min-height: 27px;
display:none;
}
JavaScript
var msg="wel come";
$("a").click(function(){
$('#divStatus').html(msg).fadeIn(800).fadeOut(9000);
});