Skip to content

Instantly share code, notes, and snippets.

@whitershade
Last active January 28, 2018 19:03
Show Gist options
  • Save whitershade/1af48b781bd8c12a1db0 to your computer and use it in GitHub Desktop.
Save whitershade/1af48b781bd8c12a1db0 to your computer and use it in GitHub Desktop.
scroll to point
$(document).ready(function() {
$(".main-header .btn-down").click(function () {
$("html, body").animate({
scrollTop: $(".main-header").height() + 40
}, "slow");
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment