Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Last active December 19, 2015 00:48
Show Gist options
  • Save ericandrewlewis/5870768 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/5870768 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('a').click( function() {
if ( $.attr(this, 'href').indexOf( '#' ) != 0 )
return;
var scrollTo = $( $.attr(this, 'href') ).offset().top;
scrollTo -= $( '.site-header-container' ).height();
$('html, body').animate({
scrollTop: scrollTo
}, 500);
return false;
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment