Skip to content

Instantly share code, notes, and snippets.

@Korveld
Last active January 19, 2016 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Korveld/63f64dd830fbd2cf610d to your computer and use it in GitHub Desktop.
Save Korveld/63f64dd830fbd2cf610d to your computer and use it in GitHub Desktop.
Scroll2object
// Scroll to object
$("#arrow-down").on('click', function(e) {
$('html, body').animate({
scrollTop: $("#descr-section").offset().top
}, 1000);
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment