flash element
by dimachen
HTML
<p style="background:#000; color:#fff;" id="elem">Элемент</p>
CSS
#elem {display:none;}
JavaScript
$("#elem").show('slow');
setTimeout(function() { $("#elem").hide('slow'); }, 2000);
by dimachen
<p style="background:#000; color:#fff;" id="elem">Элемент</p>
#elem {display:none;}
$("#elem").show('slow');
setTimeout(function() { $("#elem").hide('slow'); }, 2000);