Skip to content

Instantly share code, notes, and snippets.

@jem-computer
Created December 18, 2012 11:21
Show Gist options
  • Save jem-computer/4327227 to your computer and use it in GitHub Desktop.
Save jem-computer/4327227 to your computer and use it in GitHub Desktop.
function handleScroll() {
$(window).scroll(_.throttle(
function(){
radFunction();
// needed to wrap this function call in an anonymous function
// to get things working. *shrug*
}, 300)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment