Skip to content

Instantly share code, notes, and snippets.

@BluePraise
Created April 19, 2020 07:12
Show Gist options
  • Save BluePraise/9fa7c3651b1f25ba43f33582ab3dcce4 to your computer and use it in GitHub Desktop.
Save BluePraise/9fa7c3651b1f25ba43f33582ab3dcce4 to your computer and use it in GitHub Desktop.
Console.log scroll event
/* because I keep forgetting and having to google it */
window.onscroll=function(){
console.log(
'top: ' + (window.pageYOffset || document.documentElement.scrollTop) + ' ' +
'left: ' + (window.pageXOffset || document.documentElement.scrollLeft)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment