Skip to content

Instantly share code, notes, and snippets.

@juanbrujo
Created June 8, 2015 19:18
Show Gist options
  • Save juanbrujo/49377f03623aa87fabcc to your computer and use it in GitHub Desktop.
Save juanbrujo/49377f03623aa87fabcc to your computer and use it in GitHub Desktop.
fire once while listening to the scroll event
var elem = document.querySelector('#video');
var fired = false;
window.addEventListener('scroll', function(e){
if (document.body.scrollTop >= 300 && fired === false) {
console.log('fire!');
fired = true;
}
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment