Skip to content

Instantly share code, notes, and snippets.

@dayio
Created June 2, 2015 15:48
Show Gist options
  • Select an option

  • Save dayio/e234bfe5acc22bf63b7f to your computer and use it in GitHub Desktop.

Select an option

Save dayio/e234bfe5acc22bf63b7f to your computer and use it in GitHub Desktop.
function scrollToAnchor(id){
var aTag = $("#"+id);
$('html,body').animate({scrollTop: aTag.offset().top - 50},'slow');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment