Skip to content

Instantly share code, notes, and snippets.

@sebnilsson
Last active October 8, 2015 19:37
Show Gist options
  • Save sebnilsson/3379011 to your computer and use it in GitHub Desktop.
Save sebnilsson/3379011 to your computer and use it in GitHub Desktop.
var timeoutId = 0;
var scrollEvent = function() {
alert('Scroll event was fired');
};
$(window).scroll(function () {
clearTimeout(timeoutId );
timeoutId = setTimeout(scrollEvent, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment