Skip to content

Instantly share code, notes, and snippets.

@unnamedfeeling
Created July 23, 2017 05:33
Show Gist options
  • Save unnamedfeeling/aa507ca3328bedd5a4bf78b0c3d2ce44 to your computer and use it in GitHub Desktop.
Save unnamedfeeling/aa507ca3328bedd5a4bf78b0c3d2ce44 to your computer and use it in GitHub Desktop.
$(document).on('click', 'a[href^="#"].js-ancor', function (event){
event.preventDefault();
var id=$(this).attr('href');
$('html, body').animate({
scrollTop: $(id).offset().top-$('header').innerHeight()-20
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment