Skip to content

Instantly share code, notes, and snippets.

@andreyshr
Last active September 25, 2017 11:58
Show Gist options
  • Save andreyshr/8ff6e230d8a800327508ca1b5f46a896 to your computer and use it in GitHub Desktop.
Save andreyshr/8ff6e230d8a800327508ca1b5f46a896 to your computer and use it in GitHub Desktop.
bottomButton
$("#bottom").on("click", function (event) {
event.preventDefault();
var id = $(this).attr('href'),
top = $(id).offset().top;
$('body,html').animate({
scrollTop: top
}, 1200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment