Skip to content

Instantly share code, notes, and snippets.

@greg5green
Created October 9, 2014 01:14
Show Gist options
  • Save greg5green/9d0fb9161abfbeffa894 to your computer and use it in GitHub Desktop.
Save greg5green/9d0fb9161abfbeffa894 to your computer and use it in GitHub Desktop.
Lo-Dash Debounce Example
function resizeFunction() {
// code here
}
$(window).on('resize', _.debounce(resizeFunction, 100));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment