hover js after append
Например:
$(document).on('mouseover','.q',function(e){ $('#'+$(this).data('tip')).fadeIn(); }); $(document).on('mouseout','.q',function(e){ $('#'+$(this).data('tip')).fadeOut(); });
Вместо:
$('.q').hover(function(){ $('#'+$(this).data('tip')).fadeIn(); },function(){ $('#'+$(this).data('tip')).fadeOut(); });