Skip to content

Instantly share code, notes, and snippets.

@origamid
Created November 7, 2013 12:52
Show Gist options
  • Save origamid/7354118 to your computer and use it in GitHub Desktop.
Save origamid/7354118 to your computer and use it in GitHub Desktop.
JS: ScrollTop
$(".logo").click(function(e) {
e.preventDefault();
$('html, body').animate({
scrollTop: $("#home").offset().top
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment