Skip to content

Instantly share code, notes, and snippets.

@j0lvera
Created March 20, 2014 19:52
Show Gist options
  • Save j0lvera/9672386 to your computer and use it in GitHub Desktop.
Save j0lvera/9672386 to your computer and use it in GitHub Desktop.
jQuery Smooth Scrool
var smoothScroll = function(id) {
var target = $(id).offset().top - 60;
$('html, body').animate({scrollTop:target}, 500);
};
/*
* Use
*/
$('a#link').on('click', function(e) {
e.preventDefault();
smoothScroll('#target');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment