Показать сообщение отдельно
  #2 (permalink)  
Старый 07.05.2016, 14:20
Аватар для Cuntmann
Аспирант
Отправить личное сообщение для Cuntmann Посмотреть профиль Найти все сообщения от Cuntmann
 
Регистрация: 26.01.2014
Сообщений: 78

(function(){
var elems=document.querySelectorAll('[id^="elementMenyu"]');
	
[].forEach.call(elems,function(X){
var n=X.id.replace(/[^\d]+/g,''),
    op=document.querySelectorAll('#openingBlock'+n);

X.onmouseover=function(){op.classList.add("heighters1");};
X.onmouseout=function(){op.classList.remove("heighters1");};
op.onmouseover=function(){this.classList.add("heighters1");};
op.onmouseout=function(){this.classList.remove("heighters1");};
});
})();
Ответить с цитированием