Перейти к содержанию
Богородский муниципальный округ Нижегородской области

Документы

Название
Дата
Документ
//Информационная страница // Простая версия скрипта function removeInfoPageFromMenus() { // Удаляем из главного меню document.querySelectorAll('.top-menu__item-link').forEach(link => { if (link.textContent.includes('Информационная страница') || link.href.includes('/about/informacionnaya-stranica/')) { link.closest('.top-menu__item').remove(); } }); // Удаляем из секционного меню document.querySelectorAll('.section-menu__link').forEach(link => { if (link.textContent.includes('Информационная страница') || link.href.includes('/about/informacionnaya-stranica/')) { link.closest('.section-menu__item').remove(); } }); } // Запускаем при загрузке страницы document.addEventListener('DOMContentLoaded', removeInfoPageFromMenus);