function selectMenuPage() {
var link = document.getElementById( 'pseudo-menu' ).children;
var table = document.getElementsByClassName( 'menu-category' );
var arrayLinks = [];
for (var i = 0; i < link.length; i++) {
//Добавляем псевдоссылки в массив
let arrValue = link[i].firstChild.innerHTML;
arrayLinks.push(arrValue);
link[i].firstChild.onclick = function changeMenuPage() {
let a = this.innerHTML.toString();
let index = arrayLinks.indexOf(a);
document.querySelector( '#pseudo-menu .active' ).classList.remove( 'active' );
document.querySelector( '.menu-category.active' ).classList.remove( 'active' );
this.parentNode.classList.add('active');
table[index].classList.add('active');
return false;
};
};
};
selectMenuPage();
может добавить сюда контекст, чтобы событие быстрее доходило до обработчика?поясните, пожалуйста
$(document).ready(function (){
$('#field-id135987').mask('+7(999) 999-9999');
});