Hey there, I'm currently working on making my navbar sticky and applying it when the page is scrolled. The code I have works flawlessly on desktop, but unfortunately, it doesn't seem to work on the mobile version. Any suggestions?
window.addEventListener("scroll", function() {
var nav = document.querySelector("nav");
nav.classList.toggle("sticky", window.scrollY > 0);
})