Skip to content

Instantly share code, notes, and snippets.

@anova
Created July 4, 2022 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anova/879a7154c77e7f16f67ba5f78f904f54 to your computer and use it in GitHub Desktop.
Save anova/879a7154c77e7f16f67ba5f78f904f54 to your computer and use it in GitHub Desktop.
A scroll trigger for Google Tag Manager
function documentScrolled() {
console.log('document is scrolled');
document.removeEventListener('scroll', documentScrolled);
}
document.addEventListener('scroll', documentScrolled);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment