Created
August 14, 2016 19:52
-
-
Save akrug23/643b0922d01a2366784752d0b5b65a9e to your computer and use it in GitHub Desktop.
Scroll to element
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
$("#button").click(function() { | |
$('html, body').animate({ | |
scrollTop: $("#elementtoScrollToID").offset().top | |
}, 2000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment