mirror of https://github.com/byecorps/id.git
8 lines
283 B
JavaScript
8 lines
283 B
JavaScript
|
|
||
|
const linksOfCurrentPage = document.querySelectorAll('a[href="'+window.location.pathname+'"]');
|
||
|
console.log(window.location.pathname)
|
||
|
for (let i = 0; i < linksOfCurrentPage.length; i++) {
|
||
|
console.log(linksOfCurrentPage[i])
|
||
|
linksOfCurrentPage[i].classList.add('selected');
|
||
|
}
|