сделал как вы посоветовали и, похоже все заработало!
$('body').on('mouseenter', '.postprofile', function() {
if ($(window).width() > 843) {
$(this).find('.avatar img').stop(true, true).css({margin: '-20px 0 -40px 0'}).animate({margin: '0'},300);
$(this).find('.profile-custom-field').stop(true, true).show(300);
$(this).find('.profile-joined').stop(true, true).show(300);
$(this).find('.profile-rank').stop(true, true).show(300);
$(this).find('.profile-posts').stop(true, true).show(300);
var txt1 = '<span id="temp_added_text" style="display: block; padding-left: 70px;"><br/>▲<br/><br/></span>';
$(this).find('.profile-contact').append(txt1);
}
})
$('body').on('mouseleave', '.postprofile', function() {
if ($(window).width() > 843) {
$(this).find('.avatar img').stop(true, true).css({margin: '-20px 0 -40px 0'});
$(this).find('.profile-custom-field').stop(true, true).hide();
$(this).find('.profile-joined').stop(true, true).hide();
$(this).find('.profile-rank').stop(true, true).hide();
$(this).find('.profile-posts').stop(true, true).hide();
$(this).find('#temp_added_text').remove();
}
})
спасибо вам огромное!