Skip to content

Instantly share code, notes, and snippets.

@RuslanHolovko
Created March 6, 2018 16:32
Show Gist options
  • Save RuslanHolovko/882bb986c56d4b22a946cbbb6f567f95 to your computer and use it in GitHub Desktop.
Save RuslanHolovko/882bb986c56d4b22a946cbbb6f567f95 to your computer and use it in GitHub Desktop.
scroll to some elements
// Scroll to element
$('.element').on('click', function(){
$('hmtl, body').animate({ scrollTop : $('.element').position().top }, 200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment