Мой плагин
var text = '';
$('div').on('mouseenter', function(){
text = $(this).html();
setTimeout( function() {
$(this).html($(this).attr('data-ttt-new'));
} , 600)
})
$('div').on('mouseleave', function(){
setTimeout( function() {
$(this).html(text);
} , 600)
})