jquery , jQuery, onmouseout. , ,
$('#div').on('mouseover',function(){
$(this).css('color','transparent');
$(this).css('text-shadow','0 0 5px rgba(0,0,0,0.5)');
}).on('mouseout',function(){
$(this).css('color','black');
$(this).css('text-shadow','none');
});