Показать сообщение отдельно
  #6 (permalink)  
Старый 01.06.2016, 00:09
Аспирант
Отправить личное сообщение для alecto Посмотреть профиль Найти все сообщения от alecto
 
Регистрация: 12.11.2014
Сообщений: 84

мешает недостаток знаний.
благодарствую за подсказки!

сделал так:
var TimerInterval;
	$('.view-display-id-page_1').on('mouseenter', '.views-col', function() {
		var tempThis = $(this);
		TimerInterval = setTimeout(function(){
			$(tempThis).addClass('mouseenter');
			$(tempThis).find('.views-field-title .field-content > a').addClass('mouseenter');
			$(tempThis).find('.views-field-field-spisok-dat .field-content').addClass('mouseenter');
		}, 500);
	})
 	$('.view-display-id-page_1').on('mouseleave', '.views-col', function() {
		var tempThis = $(this);
			$(tempThis).removeClass('mouseenter');
			$(tempThis).find('.views-field-title .field-content > a').removeAttr('class');
			$(tempThis).find('.views-field-field-spisok-dat .field-content').removeClass('mouseenter');
		clearTimeout(TimerInterval);
	})


вроде работает.
спасибо.
Ответить с цитированием