Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created February 4, 2015 18:47
Show Gist options
  • Save fieldoffice/d36fd6c111f8028fbb8d to your computer and use it in GitHub Desktop.
Save fieldoffice/d36fd6c111f8028fbb8d to your computer and use it in GitHub Desktop.
Scroll To
/* 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