Skip to content

Instantly share code, notes, and snippets.

@clarklab
Created January 10, 2013 16:26
Show Gist options
  • Save clarklab/4503457 to your computer and use it in GitHub Desktop.
Save clarklab/4503457 to your computer and use it in GitHub Desktop.
simple jquery waypoint up/down toggle
$('.section').waypoint(function(event, direction) {
if (direction === 'down') {
} else {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment