DEV Community

Discussion on: Nav-link's to active as you scroll through sections, in 10 Lines of JavaScript;

Collapse
 
xxconcasxx profile image
xXConcasXx

Use

if (li.href.includes(current)) {
li.classList.add('active');
}

instead of

if (li.classList.contains(current)) {
li.classList.add("active");
}