Skip to content

Instantly share code, notes, and snippets.

@rdbox
Created April 17, 2016 17:20
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 rdbox/4433cdf0f9310bcd57fb5edcbdfeb799 to your computer and use it in GitHub Desktop.
Save rdbox/4433cdf0f9310bcd57fb5edcbdfeb799 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
$('a[href^="#"]').click(function() {
var el = $(this).attr('href');
$('body').animate({
scrollTop: $(el).offset().top
}, 2000);
return false;
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment