Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Last active December 14, 2015 07:09
Show Gist options
  • Select an option

  • Save ckpicker/5048496 to your computer and use it in GitHub Desktop.

Select an option

Save ckpicker/5048496 to your computer and use it in GitHub Desktop.
$( document ).on( "click", ".navigateLink", function() {
var anchorName = $(this).attr("ref");
if(anchorName == 'top')
$('html,body').animate({scrollTop: '0px'},'slow');
else
$('html,body').animate({scrollTop: $("#"+anchorName).offset().top - 60},'slow');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment