Skip to content

Instantly share code, notes, and snippets.

@Bouhnosaure
Created April 12, 2015 14:02
Show Gist options
  • Save Bouhnosaure/9dcba26eadf66db5f3a5 to your computer and use it in GitHub Desktop.
Save Bouhnosaure/9dcba26eadf66db5f3a5 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