Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created September 3, 2020 10:11
Show Gist options
  • Select an option

  • Save wpflames/8393f0e5ae48a66a060fe6eda7d98224 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/8393f0e5ae48a66a060fe6eda7d98224 to your computer and use it in GitHub Desktop.
Add "sticky" class to header when scrolling window - JS
window.addEventListener("scroll", function(){
var header = document.querySelector("header");
header.classList.toggle("sticky", window.scrollY > 0);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment