Created
February 4, 2015 18:47
-
-
Save fieldoffice/d36fd6c111f8028fbb8d to your computer and use it in GitHub Desktop.
Scroll To
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
/* TOP - 100 IS THE VERTICAL OFFSET IN PIXELS */ | |
$('#link').click(function() { | |
$('html, body').animate({ | |
scrollTop: $('#anchor').offset().top - 100 | |
}, 600); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment