I'm trying to alert message when uswr scroll 50px in div but it doesn't work:
function handleScroll() {
console.log('scrolling... ', this.offsetTop);
if(this.offsetTop > 50) alert('scrolled more than 50px!');
}
document.getElementById('a').addEventListener('scroll', handleScroll);
What's going on? codepen demo