Skip to content

Instantly share code, notes, and snippets.

@yuriitaran
Last active November 7, 2017 12:37
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 yuriitaran/f28aacea1fd81450ca5370ebb5bb7c18 to your computer and use it in GitHub Desktop.
Save yuriitaran/f28aacea1fd81450ca5370ebb5bb7c18 to your computer and use it in GitHub Desktop.
JQuery scroll to specific position
$('html, body').animate({
scrollTop: ($('.sroll-to-element').first().offset().top)
},500);
// Scroll to Main content
$( '.scroll-to-content' ).click(function() {
$('html, body').animate({
scrollTop: ($('.homepage-main').first().offset().top)
},800);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment