Skip to content

Instantly share code, notes, and snippets.

@technbuzz
Created July 26, 2014 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technbuzz/3beafa238fb1786053ff to your computer and use it in GitHub Desktop.
Save technbuzz/3beafa238fb1786053ff to your computer and use it in GitHub Desktop.
A nice and smooth scroll transition to particular section, normally used in single page navigaiton.
$("nav").on('click','a',function (event) {
event.preventDefault();
var elAttr = $(this).attr('href');
$('body,html').animate({
scrollTop: $(elAttr).offset().top
},700);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment