используем два события mouseenter и mouseleave, в таком кратком виде
jQuery(function($) { // имитируем подгрузку аяксом $('#test').append( Array(6).join('') ); $('#test').on({ mouseenter: function () { $(this).text( $(this).index() + 1 ); }, mouseleave: function () { setTimeout( $.proxy( function(){$(this).text('')}, this ), 350 ); } }, 'div'); }(jQuery));