Skip to content

Instantly share code, notes, and snippets.

@code-atom
Created October 24, 2016 13:06
Show Gist options
  • Save code-atom/c1752147594237f42ef70b637f335c9b to your computer and use it in GitHub Desktop.
Save code-atom/c1752147594237f42ef70b637f335c9b to your computer and use it in GitHub Desktop.
Best Practice of use Scroll event in application
var timer = null;
var scrollEvent = function () {
if(timer!=null)
clearTimeout(timer);
timer = setTimeout(function(){
console.log('hello');
}, 100);
}
$(window).scroll(scrollEvent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment