Skip to content
window.addEventListener("load", function () {
document.querySelectorAll(".lesson-link").forEach(function (link) {
link.addEventListener("click", function (e) {
e.preventDefault(); // Prevent default link behavior (to stay on the same page)
// Remove 'active' class from all lesson links
document.querySelectorAll(".lesson-link").forEach(function (el) {
el.classList.remove("active");
});
// Add 'active' class to the clicked link
this.classList.add("active");
console.log("Clicked and active class added:", this);
});
});
});