Created
March 6, 2018 16:32
-
-
Save RuslanHolovko/882bb986c56d4b22a946cbbb6f567f95 to your computer and use it in GitHub Desktop.
scroll to some elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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