mirror of
https://github.com/tchartron/blow
synced 2025-04-04 14:56:02 +00:00
10 lines
440 B
JavaScript
10 lines
440 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
// ---------------- Selected
|
|
let navbar_links = document.querySelector('#nav-links').children;
|
|
let current_location = window.location.href;
|
|
let selected_navbar_link = [...navbar_links].find((item) => {
|
|
return (item.href === current_location)
|
|
})
|
|
selected_navbar_link.className = "bg-gray-900 text-white px-3 py-2 rounded-md text-sm font-medium"
|
|
});
|
|
|