|
|
| Строка 1: |
Строка 1: |
| if (document.readyState !== 'loading') {
| | |
| myInitCode();
| |
| } else {
| |
| document.addEventListener('DOMContentLoaded', function () {
| |
| myInitCode();
| |
| });
| |
| }
| |
| function myInitCode() {
| |
| var currentPageHref = decodeURI(window.location.href);
| |
| var links = document.querySelectorAll('.custom-top-menu a');
| |
| links.forEach(function (link) {
| |
| var linkhref = location.protocol + '//' + location.host + link.getAttribute('href').trim();
| |
| console.log(currentPageHref + '=' + linkhref);
| |
| if (currentPageHref === linkhref) {
| |
| link.closest('li').classList.add('a-current');
| |
| }
| |
| });
| |
| }
| |